From 04686b83e302d367c2b37ada34043d522ec0744a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 13 Jan 2012 11:16:26 +0000 Subject: [PATCH] minor update --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index 053d9a439..0f6788a13 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2116,7 +2116,7 @@ def wasLastRequestDelayed(): deviation = stdev(kb.responseTimes) threadData = getCurrentThreadData() - if deviation: + if deviation and not conf.direct: if len(kb.responseTimes) < MIN_TIME_RESPONSES: warnMsg = "time-based standard deviation method used on a model " warnMsg += "with less than %d response times" % MIN_TIME_RESPONSES