athenad: move last_scan outside the loop (#34099)

move last_scan outside the loop
This commit is contained in:
Dean Lee
2024-11-27 18:44:32 +08:00
committed by GitHub
parent b737e8472f
commit adb9560870

View File

@@ -629,8 +629,9 @@ def log_handler(end_event: threading.Event) -> None:
def stat_handler(end_event: threading.Event) -> None:
STATS_DIR = Paths.stats_root()
last_scan = 0.0
while not end_event.is_set():
last_scan = 0.
curr_scan = time.monotonic()
try:
if curr_scan - last_scan > 10: