Skip to content

Commit

Permalink
Inform that there may be a short delay (#717)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt committed Dec 3, 2023
1 parent f4e1ba9 commit 8871a58
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions osism/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@ def handle_task(t, wait, format, timeout):

if message_type == "stdout":
print(message_content, end="", flush=True)
if "PLAY RECAP" in message_content:
logger.info(
"Play has been completed. There may now be a delay until "
"all logs have been written. Please wait and do not abort "
"execution."
)
elif message_type == "rc":
rc = int(message_content)
elif message_type == "action" and message_content == "quit":
Expand Down

0 comments on commit 8871a58

Please sign in to comment.