diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-11-09 09:06:22 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-11-09 09:06:22 -0330 |
commit | 451e0b5d45264132f1e5f07f75824a64b3fd590e (patch) | |
tree | 4164b7bd66563a24375ac5f12f25065614d8134e /cpp/src/IceGrid/RegistryI.cpp | |
parent | initial commit of C++ Bluetooth transport (diff) | |
download | ice-451e0b5d45264132f1e5f07f75824a64b3fd590e.tar.bz2 ice-451e0b5d45264132f1e5f07f75824a64b3fd590e.tar.xz ice-451e0b5d45264132f1e5f07f75824a64b3fd590e.zip |
Changed IceGrid.Registry.Data property to IceGrid.Registry.LMDB.Path
Diffstat (limited to 'cpp/src/IceGrid/RegistryI.cpp')
-rw-r--r-- | cpp/src/IceGrid/RegistryI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/RegistryI.cpp b/cpp/src/IceGrid/RegistryI.cpp index ee099559b2e..3593c868113 100644 --- a/cpp/src/IceGrid/RegistryI.cpp +++ b/cpp/src/IceGrid/RegistryI.cpp @@ -322,11 +322,11 @@ RegistryI::startImpl() // // Create the registry database. // - string dbPath = _communicator->getProperties()->getProperty("IceGrid.Registry.Data"); + string dbPath = _communicator->getProperties()->getProperty("IceGrid.Registry.LMDB.Path"); if(dbPath.empty()) { Ice::Error out(_communicator->getLogger()); - out << "property `IceGrid.Registry.Data' is not set"; + out << "property `IceGrid.Registry.LMDB.Path' is not set"; return false; } else @@ -337,7 +337,7 @@ RegistryI::startImpl() ex.error = IceInternal::getSystemErrno(); Ice::Error out(_communicator->getLogger()); - out << "property `IceGrid.Registry.Data' is set to an invalid path:\n" << ex; + out << "property `IceGrid.Registry.LMDB.Path' is set to an invalid path:\n" << ex; return false; } } |