We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f860ec9 commit 3daa821Copy full SHA for 3daa821
airflow/configuration.py
@@ -777,7 +777,8 @@ def mask_secrets(self):
777
778
for section, key in self.sensitive_config_values:
779
try:
780
- value = self.get(section, key, suppress_warnings=True)
+ with self.suppress_future_warnings():
781
+ value = self.get(section, key, suppress_warnings=True)
782
except AirflowConfigException:
783
log.debug(
784
"Could not retrieve value from section %s, for key %s. Skipping redaction of this conf.",
0 commit comments