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 airflow-core/src/airflow/models/variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,14 +480,14 @@ def check_for_write_conflict(key: str) -> None:
_backend_name,
_backend_name,
)
return
Comment thread
jscheffl marked this conversation as resolved.
return None
except Exception:
log.exception(
Comment thread
Kundan-CR7 marked this conversation as resolved.
"Unable to retrieve variable from secrets backend (%s). "
"Checking subsequent secrets backend.",
type(secrets_backend).__name__,
)
return None
return None

@staticmethod
def get_variable_from_secrets(key: str, team_name: str | None = None) -> str | None:
Expand Down
Loading