mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Make throttle start time an worker object attribute
This commit is contained in:
parent
04aa74e5ad
commit
e0800b7c29
|
@ -32,6 +32,8 @@ class Worker:
|
||||||
self._config = config
|
self._config = config
|
||||||
self._init(False)
|
self._init(False)
|
||||||
|
|
||||||
|
self.last_throttle_start_time: float = None
|
||||||
|
|
||||||
# Tell systemd that we completed initialization phase
|
# Tell systemd that we completed initialization phase
|
||||||
if self._sd_notify:
|
if self._sd_notify:
|
||||||
logger.debug("sd_notify: READY=1")
|
logger.debug("sd_notify: READY=1")
|
||||||
|
@ -107,10 +109,10 @@ class Worker:
|
||||||
:param min_secs: minimum execution time in seconds
|
:param min_secs: minimum execution time in seconds
|
||||||
:return: Any
|
:return: Any
|
||||||
"""
|
"""
|
||||||
start = time.time()
|
self.last_throttle_start_time = time.time()
|
||||||
logger.debug("========================================")
|
logger.debug("========================================")
|
||||||
result = func(*args, **kwargs)
|
result = func(*args, **kwargs)
|
||||||
time_passed = time.time() - start
|
time_passed = time.time() - self.last_throttle_start_time
|
||||||
sleep_duration = max(min_secs - time_passed, 0.0)
|
sleep_duration = max(min_secs - time_passed, 0.0)
|
||||||
logger.debug(f"Throttling with '{func.__name__}()': sleep for {sleep_duration:.2f} s, "
|
logger.debug(f"Throttling with '{func.__name__}()': sleep for {sleep_duration:.2f} s, "
|
||||||
f"last iteration took {time_passed:.2f} s.")
|
f"last iteration took {time_passed:.2f} s.")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user