uranusjr commented on code in PR #59597: URL: https://github.com/apache/airflow/pull/59597#discussion_r2671987582
########## 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: Does this and the one in SDK need to be kept in sync? We might want to add a comment to avoid people accidentally changing one but not the other. -- 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]
