Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions task-sdk/src/airflow/sdk/execution_time/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _get_connection(conn_id: str) -> Connection:
_mask_connection_secrets(conn)
return conn
except Exception:
log.exception(
log.debug(
"Unable to retrieve connection from secrets backend (%s). "
"Checking subsequent secrets backend.",
type(secrets_backend).__name__,
Expand Down Expand Up @@ -206,7 +206,7 @@ async def _async_get_connection(conn_id: str) -> Connection:
return conn
except Exception:
# If one backend fails, try the next one
log.exception(
log.debug(
"Unable to retrieve connection from secrets backend (%s). "
"Checking subsequent secrets backend.",
type(secrets_backend).__name__,
Expand Down
Loading