diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-11-10 18:30:19 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-11-10 18:30:19 +0000 |
commit | 366d9b3b1f4388666b5d9243bf2dec7135f1b1c0 (patch) | |
tree | 0d1cbd29dcd1ad93bdfb90ad2c2a194a391783f4 /cpp/src/IceGrid/NodeCache.cpp | |
parent | script now bails when calls to some external programs fail, work in (diff) | |
download | ice-366d9b3b1f4388666b5d9243bf2dec7135f1b1c0.tar.bz2 ice-366d9b3b1f4388666b5d9243bf2dec7135f1b1c0.tar.xz ice-366d9b3b1f4388666b5d9243bf2dec7135f1b1c0.zip |
Commited cosmetic changes to icegridadmin describe commands output.
Fixed a bug in server loading which would cause the server to fail loading
and the node to eventually hang.
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp index 785b717a443..584efdc9e19 100644 --- a/cpp/src/IceGrid/NodeCache.cpp +++ b/cpp/src/IceGrid/NodeCache.cpp @@ -67,7 +67,7 @@ public: } Ice::Warning out(_traceLevels->logger); - out << "failed to load `" + _id + "' on node `" << _node << "':\n" << ex; + out << "failed to load `" + _id + "' on node `" << _node << "':\n" << ex << "\nreason: " << ex.reason; ostringstream os; os << ex << "\nreason: " << ex.reason; _server->exception(NodeUnreachableException(_node, os.str())); |