Commit fa365d89 authored by Vincent Pelletier's avatar Vincent Pelletier

caucase.test: Tolerate a slow port-restoration caucased start.

caucase.http will be re-generating its https certificate, so it can be
slower than a normal non-initial start.
parent a89040b5
......@@ -2421,7 +2421,12 @@ class CaucaseTest(unittest.TestCase):
)
try:
caucase.ca.DEFAULT_BACKUP_SYMETRIC_CIPHER = 'TESTS_INTERNAL_USE_ONLY'
self._startServer(('--backup-directory', self._server_backup_path))
self._startServer(
(
'--backup-directory', self._server_backup_path,
),
timeout=20,
)
finally:
caucase.ca.DEFAULT_BACKUP_SYMETRIC_CIPHER = (
DEFAULT_BACKUP_SYMETRIC_CIPHER_orig
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment