diff options
| author | Alan Conway <aconway@apache.org> | 2010-05-07 15:54:21 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-05-07 15:54:21 +0000 |
| commit | 3669bcf00ab1d44ebd8d7b5290a5d3c3bc9cd230 (patch) | |
| tree | 50ea7f0669b19ce0ad315946bf48dd254c98ce32 /qpid/python | |
| parent | 0562b669483b7181624dde24811e2ac99074f83a (diff) | |
| download | qpid-python-3669bcf00ab1d44ebd8d7b5290a5d3c3bc9cd230.tar.gz | |
Increase retry timeout, previous value was causing occasional invald test failures.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@942132 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/brokertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid/brokertest.py b/qpid/python/qpid/brokertest.py index f78dcf4c35..c55ca7980d 100644 --- a/qpid/python/qpid/brokertest.py +++ b/qpid/python/qpid/brokertest.py @@ -90,7 +90,7 @@ def error_line(filename): except: return "" return result -def retry(function, timeout=5, delay=.01): +def retry(function, timeout=10, delay=.01): """Call function until it returns True or timeout expires. Double the delay for each retry. Return True if function returns true, False if timeout expires.""" |
