Skip to content

Commit 4f30cdd

Browse files
committed
Don't log heartbeat twice
1 parent 9421912 commit 4f30cdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command_runner/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ def _heartbeat_thread(
656656
begin_time = datetime.now()
657657
while True:
658658
elapsed_time = int((datetime.now() - begin_time).total_seconds())
659-
if elapsed_time % heartbeat == 1:
659+
if elapsed_time > heartbeat and elapsed_time % heartbeat == 0:
660660
logger.info("Still running command after %s seconds" % elapsed_time)
661661
if process.poll() is not None:
662662
break

0 commit comments

Comments
 (0)