diff options
author | Matthew Newhook <matthew@zeroc.com> | 2001-11-27 14:09:19 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2001-11-27 14:09:19 +0000 |
commit | 328b6c574d858e70fbf08c1c956e7dce5743e2cb (patch) | |
tree | 35ac7e84e8ad2c334b1b14699600b813e2775ffd /cpp/src/IceStorm/Flusher.cpp | |
parent | string/string test (diff) | |
download | ice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.tar.bz2 ice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.tar.xz ice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.zip |
Bug fixes. Added name to NoSuchTopic & TopicExists. Attempting to subscribe
to a non-existent topic throws exception.
Diffstat (limited to 'cpp/src/IceStorm/Flusher.cpp')
-rw-r--r-- | cpp/src/IceStorm/Flusher.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/Flusher.cpp b/cpp/src/IceStorm/Flusher.cpp index 9d6952ab5fe..f4eee53dc8d 100644 --- a/cpp/src/IceStorm/Flusher.cpp +++ b/cpp/src/IceStorm/Flusher.cpp @@ -29,7 +29,8 @@ public: FlusherThread(const Ice::CommunicatorPtr& communicator, const TraceLevelsPtr& traceLevels) : _traceLevels(traceLevels), - _logger(communicator->getLogger()) + _logger(communicator->getLogger()), + _destroy(false) { Ice::PropertiesPtr properties = communicator->getProperties(); string value; |