From b03a5e892842e0b03da6b465fd8752f61bdddbe4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 1 Dec 2011 13:30:47 +0000 Subject: [PATCH] people don't know what's "standard deviation" and they are wrongly connecting it's value in seconds to the --time-sec value --- lib/request/connect.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/request/connect.py b/lib/request/connect.py index 3f6d6074f..584c9d2d4 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -670,8 +670,7 @@ class Connect: if deviation > WARN_TIME_STDEV: kb.adjustTimeDelay = False - warnMsg = "there is considerable lagging (standard deviation: " - warnMsg += "%.1f sec%s) " % (deviation, "s" if deviation > 1 else "") + warnMsg = "there is considerable lagging " warnMsg += "in connection response(s). Please use as high " warnMsg += "value for --time-sec option as possible (e.g. " warnMsg += "%d or more)" % (conf.timeSec * 2)