We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa9370 commit 30767a6Copy full SHA for 30767a6
batch_processor_filter/src/exception_decorator.py
@@ -15,7 +15,7 @@ def exception_wrapper(*args, **kwargs):
15
try:
16
func(*args, **kwargs)
17
except EventAlreadyProcessingForSupplierAndVaccTypeError as exc:
18
- # Re-raise so event will be returned and retried for this known error
+ # Re-raise so event will be returned to SQS and retried for this expected error
19
raise exc
20
except Exception as exc: # pylint:disable = broad-exception-caught
21
logger.error("An unhandled exception occurred in the batch processor filter Lambda", exc_info=exc)
0 commit comments