You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Luigi calls chmod with 0o777 for pid_dir and pid files which is very bad for security reasons.
In my opinion the proper use case for the locking mechanism should be:
a) set different lock_pid_dir config option for different users
b) make all worker processes run in the same unix group to enable sharing the same pid_dir
So I recommend changing permissions to 770 for dir and 660 for pid files (or at most 775/664).
The text was updated successfully, but these errors were encountered:
Luigi calls
chmod
with0o777
for pid_dir and pid files which is very bad for security reasons.In my opinion the proper use case for the locking mechanism should be:
a) set different
lock_pid_dir
config option for different usersb) make all worker processes run in the same unix group to enable sharing the same pid_dir
So I recommend changing permissions to
770
for dir and660
for pid files (or at most 775/664).The text was updated successfully, but these errors were encountered: