diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-11-26 17:56:48 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-11-26 17:56:48 +0100 |
commit | 9a34c65221b56dc4b7941c18a0c8a0f9b634d7b6 (patch) | |
tree | 0286c00a5cc665e45f3408d8d670edeca5fc5d1a /cpp/src/IceGrid/AdminSessionI.cpp | |
parent | Fixed bug 2572 (diff) | |
download | ice-9a34c65221b56dc4b7941c18a0c8a0f9b634d7b6.tar.bz2 ice-9a34c65221b56dc4b7941c18a0c8a0f9b634d7b6.tar.xz ice-9a34c65221b56dc4b7941c18a0c8a0f9b634d7b6.zip |
Fixed bug 2306
Diffstat (limited to 'cpp/src/IceGrid/AdminSessionI.cpp')
-rw-r--r-- | cpp/src/IceGrid/AdminSessionI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/AdminSessionI.cpp b/cpp/src/IceGrid/AdminSessionI.cpp index a39db20ee4b..df4f2029657 100644 --- a/cpp/src/IceGrid/AdminSessionI.cpp +++ b/cpp/src/IceGrid/AdminSessionI.cpp @@ -381,7 +381,7 @@ AdminSessionFactory::AdminSessionFactory(const SessionServantManagerPtr& servant if(_servantManager) // Not set if Glacier2 session manager adapter not enabled { Ice::PropertiesPtr props = database->getCommunicator()->getProperties(); - const_cast<bool&>(_filters) = props->getPropertyAsIntWithDefault("IceGrid.Registry.AdminSessionFilters", 1) > 0; + const_cast<bool&>(_filters) = props->getPropertyAsIntWithDefault("IceGrid.Registry.AdminSessionFilters", 0) > 0; } } |