diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-09 15:26:04 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-09 15:26:04 +0100 |
commit | 01d0c4d606f112ba712b2f1e2bb659381af6feab (patch) | |
tree | 97a3ed26bad6a9fcc960cfe9b8133e2184453f93 /scripts/Util.py | |
parent | Additional fixes for ICE-7463, fixed test script bug (diff) | |
download | ice-01d0c4d606f112ba712b2f1e2bb659381af6feab.tar.bz2 ice-01d0c4d606f112ba712b2f1e2bb659381af6feab.tar.xz ice-01d0c4d606f112ba712b2f1e2bb659381af6feab.zip |
Fixed script failure
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 2251db283bf..e918d258872 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1090,8 +1090,8 @@ class Server(IceProcess): if not self.quiet and not current.driver.isWorkerThread(): self.process.trace(self.outfilters) - def stop(self, current, waitSuccess=False): - IceProcess.stop(self, current, waitSuccess and self.waitForShutdown) + def stop(self, current, waitSuccess=False, exitstatus=0, watchDog=None): + IceProcess.stop(self, current, waitSuccess and self.waitForShutdown, exitstatus, watchDog) # # An Ice client process. |