Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Updated timeouts to 4 hours on output buffer.
  • Loading branch information
jgebal committed Apr 27, 2018
commit 78cf95be1349de0ec51919177158e5cddb770885
4 changes: 2 additions & 2 deletions source/core/output_buffers/ut_output_table_buffer.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ create or replace type body ut_output_table_buffer is
l_buffer_data ut_varchar2_rows;
l_already_waited_for number(10,2) := 0;
l_finished boolean := false;
lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 ); -- 1 minute
lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60); -- 1 hour
lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 * 60 * 4 ); -- 4 hours
lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60 * 4); -- 4 hours
l_wait_for integer := lc_init_wait_sec;
lc_short_sleep_time constant number(1,1) := 0.1; --sleep for 100 ms between checks
lc_long_sleep_time constant number(1) := 1; --sleep for 1 s when waiting long
Expand Down