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