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
In Linux the umask setting defines the default permissions for newly created files and directories. For instance umask 000 implies that newly created files and directories are created with open permissions by default. diskcache does not seem to respect this setting while creating the cache directory, as the permissions are hard-coded to 755: https://github.com/grantjenks/python-diskcache/blob/master/diskcache/core.py#L447
Would it be possible to use the default permissions provided by the OS in creating the cache directory?
The text was updated successfully, but these errors were encountered:
In Linux the
umask
setting defines the default permissions for newly created files and directories. For instanceumask 000
implies that newly created files and directories are created with open permissions by default.diskcache
does not seem to respect this setting while creating the cache directory, as the permissions are hard-coded to 755:https://github.com/grantjenks/python-diskcache/blob/master/diskcache/core.py#L447
Would it be possible to use the default permissions provided by the OS in creating the cache directory?
The text was updated successfully, but these errors were encountered: