diff options
Diffstat (limited to 'cpp/src/IceGrid/LocatorI.cpp')
-rw-r--r-- | cpp/src/IceGrid/LocatorI.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/LocatorI.cpp b/cpp/src/IceGrid/LocatorI.cpp index 16986ada9b0..7b6a4e3c840 100644 --- a/cpp/src/IceGrid/LocatorI.cpp +++ b/cpp/src/IceGrid/LocatorI.cpp @@ -210,6 +210,11 @@ LocatorI::findAdapterById_async(const Ice::AMD_Locator_findAdapterByIdPtr& cb, { throw Ice::AdapterNotFoundException(); } + catch(const NodeUnreachableException&) + { + cb->ice_response(0); + return; + } LocatorIPtr self = const_cast<LocatorI*>(this); if(self->getDirectProxyRequest(cb, adapter)) |