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
I have an application which uses rtree and a .idx index file. The index is pre-cached in my filesystem and doesn't need to be updated. The system is running on AWS Lambda so the user doesn't have write permissions to the source directory.
However, rtree checks explicitly that the directory is writeable:
I have an application which uses rtree and a
.idx
index file. The index is pre-cached in my filesystem and doesn't need to be updated. The system is running on AWS Lambda so the user doesn't have write permissions to the source directory.However,
rtree
checks explicitly that the directory is writeable:rtree/rtree/index.py
Lines 247 to 250 in 68cb6ac
This is crashing my program. Is there a way to tell
rtree
to treat the index as read-only?The text was updated successfully, but these errors were encountered: