You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/08/11 15:24:41 UTC

[GitHub] [airflow] jedcunningham commented on a diff in pull request #25664: Configurable umask to all deamonized processes.

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org