Commit 4b8d0949 authored by Julien Muchembled's avatar Julien Muchembled

fixup! qa: fix random RuntimeError when starting cluster in testClusterStartup

parent 44153d5c
......@@ -423,7 +423,7 @@ class NEOCluster(object):
def start(last_try):
try:
self.neoctl.startCluster()
except (NotReadyException, RuntimeError):
except (NotReadyException, RuntimeError), e:
return False, e
return True, None
self.expectCondition(start)
......
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