diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-10-28 16:07:56 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-10-28 16:07:56 -0230 |
commit | be5e69faebc1e7cb55938550440c8b8bc19c1d31 (patch) | |
tree | d5cb233ca00e0ca1aa07993fea95486e266754f5 /scripts/IceStormUtil.py | |
parent | Fixed merge issue from previous commit (diff) | |
download | ice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.tar.bz2 ice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.tar.xz ice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.zip |
Convert IceGrid/IceStorm to use LMDB database rather than Freeze/BdB
Diffstat (limited to 'scripts/IceStormUtil.py')
-rw-r--r-- | scripts/IceStormUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceStormUtil.py b/scripts/IceStormUtil.py index 4d24dcc763f..65d51d832c0 100644 --- a/scripts/IceStormUtil.py +++ b/scripts/IceStormUtil.py @@ -129,7 +129,7 @@ class Replicated(IceStormUtil): self.dbHome.append(dbHome) TestUtil.cleanDbDir(dbHome) - self.iceStormDBEnv.append(' --Freeze.DbEnv.IceStorm.DbHome="%s"' % dbHome) + self.iceStormDBEnv.append(' --IceStorm.LMDB.Path="%s"' % dbHome) self.procs.append(None) topicReplicaProxy = '%s/TopicManager:%s' % (instanceName, replicaTopicManagerEndpoints) @@ -226,7 +226,7 @@ class NonReplicated(IceStormUtil): self.dbHome = os.path.join(self.testdir, self.dbDir) TestUtil.cleanDbDir(self.dbHome) - self.iceStormDBEnv = ' --Freeze.DbEnv.IceStorm.DbHome="%s"' % self.dbHome + self.iceStormDBEnv = ' --IceStorm.LMDB.Path="%s"' % self.dbHome def clean(self): TestUtil.cleanDbDir(self.dbHome) |