diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-09-19 11:33:43 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-09-19 11:33:43 +0000 |
commit | 642a066529ba18a12e2a5e6f91b4c67bb4c3d6e3 (patch) | |
tree | f7eaa7d966e2b90979b40dc676c5b5528bcdd60c /cpp/src/IceGrid/ServerI.cpp | |
parent | Added simple demo (diff) | |
download | ice-642a066529ba18a12e2a5e6f91b4c67bb4c3d6e3.tar.bz2 ice-642a066529ba18a12e2a5e6f91b4c67bb4c3d6e3.tar.xz ice-642a066529ba18a12e2a5e6f91b4c67bb4c3d6e3.zip |
Bug fixes
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp index 93f9c5e9d0e..659bf108373 100644 --- a/cpp/src/IceGrid/ServerI.cpp +++ b/cpp/src/IceGrid/ServerI.cpp @@ -466,7 +466,7 @@ void ServerI::setProcess(const ::Ice::ProcessPrx& proc, const ::Ice::Current&) { IceUtil::Monitor< ::IceUtil::Mutex>::Lock sync(*this); - _process = proc; + _process = Ice::ProcessPrx::uncheckedCast(proc->ice_timeout(_deactivationTimeout * 1000)); notifyAll(); } |