diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-02-04 01:16:35 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-02-04 01:16:35 +0000 |
commit | f3eda6c0c59b4dc361ba9b30321734c45a277166 (patch) | |
tree | 175fe6bee7538043f1851454bbb60941e367ea51 /cpp/src/IceStorm/Subscriber.cpp | |
parent | Added matching }, fixing typo. (diff) | |
download | ice-f3eda6c0c59b4dc361ba9b30321734c45a277166.tar.bz2 ice-f3eda6c0c59b4dc361ba9b30321734c45a277166.tar.xz ice-f3eda6c0c59b4dc361ba9b30321734c45a277166.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1739
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.cpp')
-rw-r--r-- | cpp/src/IceStorm/Subscriber.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/Subscriber.cpp b/cpp/src/IceStorm/Subscriber.cpp index 3162116566a..afbd0309a2d 100644 --- a/cpp/src/IceStorm/Subscriber.cpp +++ b/cpp/src/IceStorm/Subscriber.cpp @@ -813,7 +813,12 @@ Subscriber::flushTime(const IceUtil::Time& interval) { if(_resetMax || interval > _maxSend) { - assert(interval != IceUtil::Time()); + // + // If is possible for the flush interval to be zero if the + // timer resolution is sufficiently big. See + // http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1739 + // + //assert(interval != IceUtil::Time()); _resetMax = false; _maxSend = interval; } |