diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-09-12 12:22:04 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-09-12 12:22:04 +0000 |
commit | 03afb29ad57e2671da0ea3d10bc21c22d8a15005 (patch) | |
tree | d325a99ca5c4048f01648cb0b2c6525d530dae51 /cpp/src/IceGrid/ServerI.cpp | |
parent | Fixes (diff) | |
download | ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.tar.bz2 ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.tar.xz ice-03afb29ad57e2671da0ea3d10bc21c22d8a15005.zip |
Fixes
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerI.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp index 9c24a7a2dec..efcbcef6f88 100644 --- a/cpp/src/IceGrid/ServerI.cpp +++ b/cpp/src/IceGrid/ServerI.cpp @@ -1010,9 +1010,8 @@ ServerI::destroy(const AMD_Node_destroyServerPtr& amdCB, const string& uuid, int { if(_info.uuid.empty()) { - DeploymentException ex; - ex.reason = "server doesn't exist (`" + uuid + "')"; - throw ex; + amdCB->ice_response(); + return; // Server doesn't exist. } else if(_info.uuid != uuid) { |