Commit 2f00e603 authored by Jérome Perrin's avatar Jérome Perrin

test: give more time for caucase to start

it seems not enough on out test infrastructure sometimes
parent 43c0b5de
......@@ -169,9 +169,9 @@ class KedifaCaucaseMixin(KedifaMixin):
self.caucase_runtime.start()
self.assertTrue(self.caucase_runtime.is_alive())
self.caucase_url = 'http://[%s]:%s' % (ip, port)
# give 5s for caucase to be available
# give 10s for caucase to be available
b = time.time()
for i in range(50):
for i in range(100):
try:
requests.get(self.caucase_url)
except BaseException:
......
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