Skip to content

Commit b544a9c

Browse files
committed
pr comments
1 parent 97993b5 commit b544a9c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

imap_processing/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ def upload_products(self, products: list[Path]) -> None:
515515
continue
516516

517517
logger.error(
518-
f"Upload Failed after {max_retries} retries. Exiting "
518+
f"Upload failed after {max_retries} attempts. Exiting "
519519
f"with code {RETRY_EXIT_CODE}."
520520
)
521521
sys.exit(RETRY_EXIT_CODE)

imap_processing/tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ def test_post_processing_upload_503_error(
10631063

10641064
# Checks the upload failure was logged
10651065
assert any(
1066-
"Upload Failed after 3 retries" in str(call)
1066+
"Upload failed after 3 attempts" in str(call)
10671067
for call in mock_error.call_args_list
10681068
)
10691069

0 commit comments

Comments
 (0)