diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-12 14:18:02 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-12 14:18:02 +0000 |
commit | ade48e0859d2d96fb90ad62ca4c584907f772201 (patch) | |
tree | 3b61fab3163acccf456fe16f6e7667963ab0e7ea /cpp/src/IceGrid/AllocatableObjectCache.h | |
parent | Fixed IceGrid python scripts (diff) | |
download | ice-ade48e0859d2d96fb90ad62ca4c584907f772201.tar.bz2 ice-ade48e0859d2d96fb90ad62ca4c584907f772201.tar.xz ice-ade48e0859d2d96fb90ad62ca4c584907f772201.zip |
Fixed bug where allocation could return before the Glacier2 filters were
added
Diffstat (limited to 'cpp/src/IceGrid/AllocatableObjectCache.h')
-rw-r--r-- | cpp/src/IceGrid/AllocatableObjectCache.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/AllocatableObjectCache.h b/cpp/src/IceGrid/AllocatableObjectCache.h index 3c906fc77c7..9779314dd54 100644 --- a/cpp/src/IceGrid/AllocatableObjectCache.h +++ b/cpp/src/IceGrid/AllocatableObjectCache.h @@ -57,10 +57,9 @@ public: private: - virtual bool allocated(const AllocatablePtr& allocatable, const SessionIPtr& session) + virtual void allocated(const AllocatablePtr& allocatable, const SessionIPtr& session) { response(AllocatableObjectEntryPtr::dynamicCast(allocatable)->getProxy()); - return true; } virtual void canceled(const AllocationException& ex) |