diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-09-26 11:39:04 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-09-26 11:39:04 +0200 |
commit | cf37e9ad213fb91c88f4d989f97dd3bd0d694948 (patch) | |
tree | 506ea446f273099fd1c129c6d8057134cf2e7d67 | |
parent | Bug 2483. (diff) | |
download | ice-cf37e9ad213fb91c88f4d989f97dd3bd0d694948.tar.bz2 ice-cf37e9ad213fb91c88f4d989f97dd3bd0d694948.tar.xz ice-cf37e9ad213fb91c88f4d989f97dd3bd0d694948.zip |
Fixed bug 2488
-rw-r--r-- | cpp/src/IceGrid/Allocatable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Allocatable.cpp b/cpp/src/IceGrid/Allocatable.cpp index 05f48d70311..402a5cc32d6 100644 --- a/cpp/src/IceGrid/Allocatable.cpp +++ b/cpp/src/IceGrid/Allocatable.cpp @@ -38,8 +38,7 @@ AllocationRequest::pending() if(_timeout > 0) { - _session->getTimer()->schedule(this, IceUtil::Time::now(IceUtil::Time::Monotonic) + - IceUtil::Time::milliSeconds(_timeout)); + _session->getTimer()->schedule(this, IceUtil::Time::milliSeconds(_timeout)); } _state = Pending; return true; |