-
Notifications
You must be signed in to change notification settings - Fork 131
Index is checking write access despite assuming read-only access #247
Copy link
Copy link
Open
Description
Context
When passing a filename to the Index class, it assumes that the file can not be overwritten unless explicitly set by the user.
Lines 240 to 244 in 81cc81a
| # assume if the file exists, we're not going to overwrite it | |
| # unless the user explicitly set the property to do so | |
| if os.path.exists(p): | |
| self.properties.overwrite = bool(kwargs.get("overwrite", False)) |
However, passing a file which is in a read-only dir is not allowed, since it is checked if the provided file is within a directory with write access.
Lines 255 to 256 in 81cc81a
| if not os.access(d, os.W_OK): | |
| message = "Unable to open file '%s' for index storage" % f |
Expected behavior
When the provided file is within a read-only directory, but overwrite self.properties.overwrite = False the no OSError should be raised.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels