We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9421912 commit 4f30cddCopy full SHA for 4f30cdd
command_runner/__init__.py
@@ -656,7 +656,7 @@ def _heartbeat_thread(
656
begin_time = datetime.now()
657
while True:
658
elapsed_time = int((datetime.now() - begin_time).total_seconds())
659
- if elapsed_time % heartbeat == 1:
+ if elapsed_time > heartbeat and elapsed_time % heartbeat == 0:
660
logger.info("Still running command after %s seconds" % elapsed_time)
661
if process.poll() is not None:
662
break
0 commit comments