FilesystemStore::list
is not safe to call concurrently
#3795
Milestone
FilesystemStore::list
is not safe to call concurrently
#3795
We can have a file/dir removed between
fs::read_dir
anddir_entry_is_key
looks at its metadata which causes a spurious error. Obviouslylist
will always return a set that may be bogus by the time its used, but that should be pretty clear from the API, the call shouldn't fail, however (and its probably okay that its internally-inconsistent).The text was updated successfully, but these errors were encountered: