diff options
author | Stephen D. Huston <shuston@apache.org> | 2011-11-02 16:20:41 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2011-11-02 16:20:41 +0000 |
commit | fd7342fe5531015187917e589653e5b2d80c85dd (patch) | |
tree | 30b8128291755bfb747aac21adc06e358d86cfc0 /cpp/src | |
parent | d1706c12d6c12a41a3607be6ac1f99e3c9adfd92 (diff) | |
download | qpid-python-fd7342fe5531015187917e589653e5b2d80c85dd.tar.gz |
Give the broker more time to start; has been timing out lately. NO-JIRA.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1196667 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/tests/run_acl_tests.ps1 | 2 | ||||
-rw-r--r-- | cpp/src/tests/start_broker.ps1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/run_acl_tests.ps1 b/cpp/src/tests/run_acl_tests.ps1 index a1848779c7..46e070477f 100644 --- a/cpp/src/tests/run_acl_tests.ps1 +++ b/cpp/src/tests/run_acl_tests.ps1 @@ -50,7 +50,7 @@ Function start_broker($acl_options) . $srcdir\background.ps1 $cmdblock # Wait for the broker to start $wait_time = 0 - while (!(Test-Path qpidd.port) -and ($wait_time -lt 10)) { + while (!(Test-Path qpidd.port) -and ($wait_time -lt 30)) { Start-Sleep 2 $wait_time += 2 } diff --git a/cpp/src/tests/start_broker.ps1 b/cpp/src/tests/start_broker.ps1 index 9263262b9f..6f4a140efd 100644 --- a/cpp/src/tests/start_broker.ps1 +++ b/cpp/src/tests/start_broker.ps1 @@ -49,7 +49,7 @@ $srcdir = Get-ScriptPath . $srcdir\background.ps1 $cmdblock $wait_time = 0 -while (!(Test-Path qpidd.port) -and ($wait_time -lt 10)) { +while (!(Test-Path qpidd.port) -and ($wait_time -lt 30)) { Start-Sleep 2 $wait_time += 2 } |