diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-23 16:48:51 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-23 16:48:51 +0100 |
commit | bf0fcdd0c13591c4e50b7d6454f3ca4e8901fb10 (patch) | |
tree | 2a56ee69caeb2eb23bf44a3735f7b0b553951600 /scripts/IceGridUtil.py | |
parent | Fixed ICE-7688 - IceGrid db directories not removed (diff) | |
download | ice-bf0fcdd0c13591c4e50b7d6454f3ca4e8901fb10.tar.bz2 ice-bf0fcdd0c13591c4e50b7d6454f3ca4e8901fb10.tar.xz ice-bf0fcdd0c13591c4e50b7d6454f3ca4e8901fb10.zip |
Fixed ICE-7686 - IceGrid/simple failure when running with many workers
Diffstat (limited to 'scripts/IceGridUtil.py')
-rw-r--r-- | scripts/IceGridUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceGridUtil.py b/scripts/IceGridUtil.py index 8bbe1b2e371..85e3a23eed0 100644 --- a/scripts/IceGridUtil.py +++ b/scripts/IceGridUtil.py @@ -69,7 +69,7 @@ class IceGridNode(ProcessFromBinDir, Server): def setup(self, current): # Create the database directory - self.dbdir = os.path.join(current.testcase.getPath(), "node-{0}".format(self.name)) + self.dbdir = os.path.join(current.testsuite.getPath(), "node-{0}".format(self.name)) if os.path.exists(self.dbdir): shutil.rmtree(self.dbdir) os.mkdir(self.dbdir) @@ -120,7 +120,7 @@ class IceGridRegistry(ProcessFromBinDir, Server): def setup(self, current): # Create the database directory - self.dbdir = os.path.join(current.testcase.getPath(), "registry-{0}".format(self.name)) + self.dbdir = os.path.join(current.testsuite.getPath(), "registry-{0}".format(self.name)) if os.path.exists(self.dbdir): shutil.rmtree(self.dbdir) os.mkdir(self.dbdir) |