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
For FileCache this may not be a problem insofar as deserializing will fail? For SeparateBodyFileCache it will be, insofar as it's just a pile-of-bytes for the data in the body file.
pip doesn't have this problem since it writes to a temporary file and then uses os.replace(). CacheControl may wish to adopt this.
The text was updated successfully, but these errors were encountered:
pip doesn't have this problem since it writes to a temporary file and then uses os.replace(). CacheControl may wish to adopt this.
Makes sense. Would you be interested in sending a patch for this? Otherwise, I'll possibly have some time to look into this in the coming weeks (but no guarantees).
For FileCache this may not be a problem insofar as deserializing will fail? For SeparateBodyFileCache it will be, insofar as it's just a pile-of-bytes for the data in the body file.
pip
doesn't have this problem since it writes to a temporary file and then usesos.replace()
. CacheControl may wish to adopt this.The text was updated successfully, but these errors were encountered: