diff options
author | Stephen D. Huston <shuston@apache.org> | 2010-11-26 15:39:02 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2010-11-26 15:39:02 +0000 |
commit | 0c8a8a2abaf071a2693dd1e3d5ba5f90bd1de1b1 (patch) | |
tree | f2708d7a153f0c09cb06081c2d2dd2ce501d09ff /qpid/cpp/src | |
parent | 599ca0ca8256e8c75604a334b79838e438a5bae1 (diff) | |
download | qpid-python-0c8a8a2abaf071a2693dd1e3d5ba5f90bd1de1b1.tar.gz |
Increase the broker start timeout to 90 seconds; sometimes the SQL db create takes a minute or more.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1039421 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/tests/run_store_tests.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/run_store_tests.ps1 b/qpid/cpp/src/tests/run_store_tests.ps1 index d470259ad7..76b46737f0 100644 --- a/qpid/cpp/src/tests/run_store_tests.ps1 +++ b/qpid/cpp/src/tests/run_store_tests.ps1 @@ -85,7 +85,7 @@ $cmdblock = $executioncontext.invokecommand.NewScriptBlock($cmdline) . $srcdir\background.ps1 $cmdblock $wait_time = 0 -while (!(Test-Path qpidd-store.port) -and ($wait_time -lt 20)) { +while (!(Test-Path qpidd-store.port) -and ($wait_time -lt 90)) { Start-Sleep 2 $wait_time += 2 } |