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

Skip to content

Commit d729b2b

Browse files
authored
Merge pull request #652 from utPLSQL/feature/fix_output_buffer_timeout
Feature/fix output buffer timeout
2 parents c1047ea + b8e2243 commit d729b2b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ env:
4646
- DOCKHER_HUB_REPO="${DOCKER_BASE_TAG:-$UT3_DOCKER_REPO}"
4747
#utPLSQL released version directory
4848
- UTPLSQL_DIR="utPLSQL_latest_release"
49+
- SELFTESTING_BRANCH="develop"
4950
- UTPLSQL_CLI_VERSION="3.1.0"
5051
# Maven
5152
- MAVEN_HOME=/usr/local/maven

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.1.0-develop
1+
v3.1.1-develop

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)