Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e61c4c2 commit 56832feCopy full SHA for 56832fe
1 file changed
lib/core/common.py
@@ -1925,7 +1925,7 @@ def adjustTimeDelay(lastQueryDuration, lowerStdLimit):
1925
Provides tip for adjusting time delay in time-based data retrieval
1926
"""
1927
1928
- candidate = 1 + int(round((1 - (lastQueryDuration - lowerStdLimit) / lastQueryDuration) * conf.timeSec))
+ candidate = 1 + int(round(lowerStdLimit))
1929
1930
if candidate:
1931
kb.delayCandidates = [candidate] + kb.delayCandidates[:-1]
0 commit comments