summaryrefslogtreecommitdiff
path: root/cpp/src/IceStorm/Subscriber.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.cpp')
-rw-r--r--cpp/src/IceStorm/Subscriber.cpp7
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;
}