summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/deployer/Service.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-10-28 16:07:56 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-10-28 16:07:56 -0230
commitbe5e69faebc1e7cb55938550440c8b8bc19c1d31 (patch)
treed5cb233ca00e0ca1aa07993fea95486e266754f5 /cpp/test/IceGrid/deployer/Service.cpp
parentFixed merge issue from previous commit (diff)
downloadice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.tar.bz2
ice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.tar.xz
ice-be5e69faebc1e7cb55938550440c8b8bc19c1d31.zip
Convert IceGrid/IceStorm to use LMDB database rather than Freeze/BdB
Diffstat (limited to 'cpp/test/IceGrid/deployer/Service.cpp')
-rw-r--r--cpp/test/IceGrid/deployer/Service.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/test/IceGrid/deployer/Service.cpp b/cpp/test/IceGrid/deployer/Service.cpp
index 96ccd153f36..61ae164d60f 100644
--- a/cpp/test/IceGrid/deployer/Service.cpp
+++ b/cpp/test/IceGrid/deployer/Service.cpp
@@ -9,7 +9,6 @@
#include <Ice/Ice.h>
#include <IceBox/IceBox.h>
-#include <Freeze/Freeze.h>
#include <TestI.h>
using namespace std;
@@ -58,13 +57,6 @@ ServiceI::start(const string& name,
{
Ice::PropertiesPtr properties = communicator->getProperties();
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter(name);
- if(properties->getPropertyAsInt(name + ".Freeze") > 0)
- {
- //
- // We do this to ensure the dbenv directory exists.
- //
- Freeze::createConnection(communicator, name);
- }
Ice::ObjectPtr object = new TestI(properties);
adapter->add(object, communicator->stringToIdentity(properties->getProperty(name + ".Identity")));
adapter->activate();