diff options
Diffstat (limited to 'scripts/IceGridAdmin.py')
-rw-r--r-- | scripts/IceGridAdmin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceGridAdmin.py b/scripts/IceGridAdmin.py index ceed93f182f..854dc3b25e0 100644 --- a/scripts/IceGridAdmin.py +++ b/scripts/IceGridAdmin.py @@ -102,7 +102,7 @@ def startIceGridRegistry(testdir, dynamicRegistration = False): cmd = command + ' ' + \ r' --Ice.ProgramName=' + name + \ r' --IceGrid.Registry.Client.Endpoints="default -p ' + str(iceGridPort + i) + '" ' + \ - r' --IceGrid.Registry.Data="' + dataDir + '" ' + r' --IceGrid.Registry.LMDB.MapSize=1 --IceGrid.Registry.LMDB.Path="' + dataDir + '" ' if i > 0: cmd += r' --IceGrid.Registry.ReplicaName=' + name + ' ' + getDefaultLocatorProperty() @@ -140,7 +140,7 @@ def iceGridNodePropertiesOverride(): # Create property overrides from command line options. # overrideOptions = '' - for opt in shlex.split(TestUtil.getCommandLineProperties("", TestUtil.DriverConfig("server"))): + for opt in shlex.split(TestUtil.getCommandLineProperties("", TestUtil.DriverConfig("server"), "")): opt = opt.strip().replace("--", "") index = opt.find("=") if index == -1: |