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/SessionI.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/SessionI.cpp')
-rw-r--r-- | cpp/src/IceGrid/SessionI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/SessionI.cpp b/cpp/src/IceGrid/SessionI.cpp index fd9e827a2f3..0032d29bdfc 100644 --- a/cpp/src/IceGrid/SessionI.cpp +++ b/cpp/src/IceGrid/SessionI.cpp @@ -304,7 +304,7 @@ ClientSessionFactory::ClientSessionFactory(const SessionServantManagerPtr& serva if(_servantManager) // Not set if Glacier2 session manager adapter not enabled { Ice::PropertiesPtr properties = _database->getCommunicator()->getProperties(); - const_cast<bool&>(_filters) = properties->getPropertyAsIntWithDefault("IceGrid.Registry.SessionFilters", 1) > 0; + const_cast<bool&>(_filters) = properties->getPropertyAsIntWithDefault("IceGrid.Registry.SessionFilters", 0) > 0; } } |