summaryrefslogtreecommitdiff
path: root/scripts/IceStormUtil.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-03-23 16:48:51 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-03-23 16:48:51 +0100
commitbf0fcdd0c13591c4e50b7d6454f3ca4e8901fb10 (patch)
tree2a56ee69caeb2eb23bf44a3735f7b0b553951600 /scripts/IceStormUtil.py
parentFixed ICE-7688 - IceGrid db directories not removed (diff)
downloadice-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/IceStormUtil.py')
-rw-r--r--scripts/IceStormUtil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/IceStormUtil.py b/scripts/IceStormUtil.py
index 47a08cbe3da..503877b2661 100644
--- a/scripts/IceStormUtil.py
+++ b/scripts/IceStormUtil.py
@@ -24,7 +24,7 @@ class IceStorm(ProcessFromBinDir, Server):
def setup(self, current):
# Create the database directory
- self.dbdir = os.path.join(current.testcase.getPath(), "{0}-{1}.db".format(self.instanceName, self.replica))
+ self.dbdir = os.path.join(current.testsuite.getPath(), "{0}-{1}.db".format(self.instanceName, self.replica))
if os.path.exists(self.dbdir):
shutil.rmtree(self.dbdir)
os.mkdir(self.dbdir)