From 1672aa73fd8526ada2059b51f26eea5d5fee63fa Mon Sep 17 00:00:00 2001 From: Paul Nilsson Date: Mon, 16 Dec 2024 22:36:27 +0100 Subject: [PATCH] Increased sleep to 1 s --- pilot/util/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/util/container.py b/pilot/util/container.py index d4b1c627..7acfcf6f 100644 --- a/pilot/util/container.py +++ b/pilot/util/container.py @@ -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: