potiuk commented on code in PR #59597: URL: https://github.com/apache/airflow/pull/59597#discussion_r2672104437
########## airflow-core/src/airflow/secrets/base_secrets.py: ########## @@ -18,3 +18,9 @@ # Re export for compat from airflow._shared.secrets_backend.base import BaseSecretsBackend as BaseSecretsBackend + +# Server side default secrets backend search path used by server components (scheduler, API server) +DEFAULT_SECRETS_SEARCH_PATH = [ + "airflow.secrets.environment_variables.EnvironmentVariablesBackend", + "airflow.secrets.metastore.MetastoreBackend", +] Review Comment: Or better a prek hook to check/sync. Comments of that sort are pretty useless - people tend to develop blind spots for comments. -- 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]
