Skip to content

Commit

Permalink
Increased sleep to 1 s
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Nilsson committed Dec 16, 2024
1 parent b95d9b9 commit 1672aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pilot/util/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def execute(executable: Any, **kwargs: dict) -> Any: # noqa: C901

def read_output(stream, queue):
while True:
sleep(0.01)
sleep(1)
try:
line = stream.readline()
if not line:
Expand Down

0 comments on commit 1672aa7

Please sign in to comment.