diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 09:59:37 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 09:59:37 +0000 |
commit | 754eac4c3527879ebf43fcd38a9970c0e735e00d (patch) | |
tree | e6ce1c6aab5402f0e0acf046ed841738bc95627b /cpp/src/IceGrid/SessionI.cpp | |
parent | Simplified Application view; fixed PropertySets issues (diff) | |
download | ice-754eac4c3527879ebf43fcd38a9970c0e735e00d.tar.bz2 ice-754eac4c3527879ebf43fcd38a9970c0e735e00d.tar.xz ice-754eac4c3527879ebf43fcd38a9970c0e735e00d.zip |
Fixed allocateByType bug, fixed TODO XXX
Diffstat (limited to 'cpp/src/IceGrid/SessionI.cpp')
-rw-r--r-- | cpp/src/IceGrid/SessionI.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/SessionI.cpp b/cpp/src/IceGrid/SessionI.cpp index b6774252021..f16733acaed 100644 --- a/cpp/src/IceGrid/SessionI.cpp +++ b/cpp/src/IceGrid/SessionI.cpp @@ -325,7 +325,11 @@ ClientSessionManagerI::create(const string& userId, const Glacier2::SessionContr // care of reaping the session. // SessionIPtr session = new ClientSessionI(userId, _database, current.adapter, _waitQueue, _timeout); - return Glacier2::SessionPrx::uncheckedCast(current.adapter->addWithUUID(session)); // TODO: XXX: category = userid? + + // + // TODO: XXX: Update the Glacier2 allowable table to allow access to this object! + // + return Glacier2::SessionPrx::uncheckedCast(current.adapter->addWithUUID(session)); } SessionPrx |