jedcunningham commented on code in PR #25664:
URL: https://github.com/apache/airflow/pull/25664#discussion_r943619518
##########
airflow/settings.py:
##########
@@ -640,3 +640,5 @@ def initialize():
# Prefix used to identify tables holding data moved during migration.
AIRFLOW_MOVED_TABLE_PREFIX = "_airflow_moved"
+
+DAEMON_UMASK: str = conf.get('core', 'daemon_umask', fallback='0o077')
Review Comment:
```suggestion
DAEMON_UMASK: str = conf.get('core', 'daemon_umask')
```
nit: don't need this fallback.
--
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]