potiuk commented on code in PR #35160:
URL: https://github.com/apache/airflow/pull/35160#discussion_r1375456699
##########
tests/system/providers/amazon/aws/utils/__init__.py:
##########
@@ -106,6 +106,8 @@ def _fetch_from_ssm(key: str, test_name: str | None = None)
-> str:
# Since a default value after the SSM check is allowed, these exceptions
should not stop execution.
except NoCredentialsError as e:
log.info("No boto credentials found: %s", e)
+ except ClientError as e:
Review Comment:
This is an erorr I got when running "import" tests for all system tests (we
do check if all system tests are imporable) - seems that there is one more kind
of error that can occur - which was not handled here - when SSM is not
reachable during import (cc: @o-nikolas @vincbeck @ferruzzi ).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]