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

Skip to content

Commit f265a60

Browse files
committed
Updated timeouts to 4 hours on output buffer.
1 parent 96aa41e commit f265a60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/core/output_buffers/ut_output_table_buffer.tpb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ create or replace type body ut_output_table_buffer is
6969
l_buffer_data ut_varchar2_rows;
7070
l_already_waited_for number(10,2) := 0;
7171
l_finished boolean := false;
72-
lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 ); -- 1 minute
73-
lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60); -- 1 hour
72+
lc_init_wait_sec constant naturaln := coalesce(a_initial_timeout, 60 * 60 * 4 ); -- 4 hours
73+
lc_max_wait_sec constant naturaln := coalesce(a_timeout_sec, 60 * 60 * 4); -- 4 hours
7474
l_wait_for integer := lc_init_wait_sec;
7575
lc_short_sleep_time constant number(1,1) := 0.1; --sleep for 100 ms between checks
7676
lc_long_sleep_time constant number(1) := 1; --sleep for 1 s when waiting long

0 commit comments

Comments
 (0)