From f29484e550cbdd11bbd7acf9394e051f259aa906 Mon Sep 17 00:00:00 2001 From: tgalvin Date: Sat, 4 Jan 2025 10:46:55 +1100 Subject: [PATCH] switched error reported --- flint/imager/wsclean.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flint/imager/wsclean.py b/flint/imager/wsclean.py index 23ad2461..20ceaa7e 100644 --- a/flint/imager/wsclean.py +++ b/flint/imager/wsclean.py @@ -292,7 +292,7 @@ def _wsclean_output_callback(line: str) -> None: # files from a previous execution exist # temp_error_lines = ("Error opening temporary data file", "Input/output error") - temp_error_lines = ("Error opening temporary data file",) + temp_error_lines = ("Input/output error",) if any([temp_error_line in line for temp_error_line in temp_error_lines]): logger.info(f"Detected input/output error in {line}") from time import sleep