amoghrajesh commented on code in PR #59597: URL: https://github.com/apache/airflow/pull/59597#discussion_r2675148791
########## 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: Pushed as a hook in e1dd7cc376 -- 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]
