diff options
author | Alan Conway <aconway@apache.org> | 2010-03-29 13:54:46 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-03-29 13:54:46 +0000 |
commit | 5913593d7605f97535a4dc66ea9b39d46c64a142 (patch) | |
tree | be7e94aae61d6284af5042632861e512c9552b51 /cpp/src/qpid/cluster/ClusterTimer.cpp | |
parent | 8c650d3cbacb2830afe2a85d7062e5cda72e7ad2 (diff) | |
download | qpid-python-5913593d7605f97535a4dc66ea9b39d46c64a142.tar.gz |
Raise ClusterTimer lateness threshold to reduce noisy warnings.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@928779 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/ClusterTimer.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/ClusterTimer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/cluster/ClusterTimer.cpp b/cpp/src/qpid/cluster/ClusterTimer.cpp index 4068a4783c..baeaafb478 100644 --- a/cpp/src/qpid/cluster/ClusterTimer.cpp +++ b/cpp/src/qpid/cluster/ClusterTimer.cpp @@ -38,6 +38,7 @@ ClusterTimer::ClusterTimer(Cluster& c) : cluster(c) { // Allow more generous overrun threshold with cluster as we // have to do a CPG round trip before executing the task. overran = 10*sys::TIME_MSEC; + late = 100*sys::TIME_MSEC; } ClusterTimer::~ClusterTimer() {} |