diff options
author | Benoit Foucher <benoit@zeroc.com> | 2020-03-13 17:59:30 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2020-03-13 17:59:30 +0100 |
commit | 1095cc062be0182446a9bb3458c03dcd526a12da (patch) | |
tree | 27369416610dd95aab10c02bfcc6249b2ae20314 /scripts/Util.py | |
parent | Udpated C# .NET Framework projects to use 3.7.3.1 (diff) | |
download | ice-1095cc062be0182446a9bb3458c03dcd526a12da.tar.bz2 ice-1095cc062be0182446a9bb3458c03dcd526a12da.tar.xz ice-1095cc062be0182446a9bb3458c03dcd526a12da.zip |
Bumped the wait time for the iOS controller startup to prevent failures
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 6d33f548fe5..2202bdacd60 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2248,7 +2248,7 @@ class RemoteProcessController(ProcessController): pass nRetry = 0 - while nRetry < 24: + while nRetry < 120: nRetry += 1 if self.supportsDiscovery(): @@ -2260,9 +2260,9 @@ class RemoteProcessController(ProcessController): if ident in self.processControllerProxies: return self.processControllerProxies[ident] - # If the controller isn't up after 30s, we restart it. With the iOS simulator, + # If the controller isn't up after a while, we restart it. With the iOS simulator, # it's not uncommon to get Springoard crashes when starting the controller. - if nRetry == 18: + if nRetry == 50: sys.stdout.write("controller application unreachable, restarting... ") sys.stdout.flush() self.restartControllerApp(current, ident) |