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 /cpp/test/IceGrid/deployer/Service.cpp | |
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 'cpp/test/IceGrid/deployer/Service.cpp')
-rw-r--r-- | cpp/test/IceGrid/deployer/Service.cpp | 8 |
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(); |