From 78cf95be1349de0ec51919177158e5cddb770885 Mon Sep 17 00:00:00 2001 From: Jacek Gebal Date: Fri, 27 Apr 2018 18:00:46 +0100 Subject: [PATCH 1/3] Updated timeouts to 4 hours on output buffer. --- source/core/output_buffers/ut_output_table_buffer.tpb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/output_buffers/ut_output_table_buffer.tpb b/source/core/output_buffers/ut_output_table_buffer.tpb index d7d9a0813..5384afd45 100644 --- a/source/core/output_buffers/ut_output_table_buffer.tpb +++ b/source/core/output_buffers/ut_output_table_buffer.tpb @@ -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 From 44f157b6c459c4be23a966af4fd92ed495d9fdca Mon Sep 17 00:00:00 2001 From: Jacek Gebal Date: Fri, 27 Apr 2018 18:04:07 +0100 Subject: [PATCH 2/3] Switching to develop branch for self-testing. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a55b700e7..2293bf983 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,6 +46,7 @@ env: - DOCKHER_HUB_REPO="${DOCKER_BASE_TAG:-$UT3_DOCKER_REPO}" #utPLSQL released version directory - UTPLSQL_DIR="utPLSQL_latest_release" + - SELFTESTING_BRANCH="develop" - UTPLSQL_CLI_VERSION="3.1.0" # Maven - MAVEN_HOME=/usr/local/maven From b8e2243506919f8adfee919a9447e4b44d5d1e84 Mon Sep 17 00:00:00 2001 From: Jacek Gebal Date: Fri, 27 Apr 2018 20:54:26 +0100 Subject: [PATCH 3/3] Bumped version TO 3.1.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3cbc57657..962afe352 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v3.1.0-develop +v3.1.1-develop