diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-07-15 05:14:32 -0400 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-07-15 11:14:32 +0200 |
commit | 2e60ce8af12b12a8c1aed18c7bea2413016d4004 (patch) | |
tree | 4f5f578bb99ea4713cbc1d0e57346b6036c70f10 /scripts/IceGridUtil.py | |
parent | Test script minor warning fixes (diff) | |
download | ice-2e60ce8af12b12a8c1aed18c7bea2413016d4004.tar.bz2 ice-2e60ce8af12b12a8c1aed18c7bea2413016d4004.tar.xz ice-2e60ce8af12b12a8c1aed18c7bea2413016d4004.zip |
Port to AIX with g++, xlC_r and xlclang++ (#434)
Diffstat (limited to 'scripts/IceGridUtil.py')
-rw-r--r-- | scripts/IceGridUtil.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/IceGridUtil.py b/scripts/IceGridUtil.py index 3482d22557f..399596001a7 100644 --- a/scripts/IceGridUtil.py +++ b/scripts/IceGridUtil.py @@ -114,10 +114,11 @@ class IceGridNode(ProcessFromBinDir, Server): class IceGridRegistry(ProcessFromBinDir, Server): - def __init__(self, name, portnum=20, readyCount=5, *args, **kargs): + def __init__(self, name, portnum=20, ready="AdminSessionManager", *args, **kargs): Server.__init__(self, "icegridregistry", mapping=Mapping.getByName("cpp"), desc="IceGrid registry " + name, - readyCount=readyCount, *args, **kargs) + ready=ready, *args, **kargs) self.portnum = portnum + self.readyCount = -1 self.name = name def setup(self, current): |