Python: increase the amount of times we try to connect to ResInsight

This commit is contained in:
Gaute Lindkvist
2019-06-06 14:23:18 +02:00
parent 58765ffdd4
commit eaf795112f

View File

@@ -86,7 +86,7 @@ class Instance:
versionOk = False
if launched:
for i in range(0, 5):
for i in range(0, 10):
connectionOk, versionOk = self.checkVersion()
if connectionOk:
break