Skip to content

Commit

Permalink
switched error reported
Browse files Browse the repository at this point in the history
  • Loading branch information
tgalvin committed Jan 3, 2025
1 parent b880de4 commit f29484e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flint/imager/wsclean.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f29484e

Please sign in to comment.