Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TieredStorage] Exclude NotFound in reporting storage leakage on drop…
…() (solana-labs#446) #### Problem TieredStorage::drop() currently panic when it fails to delete the underlying file to raise awareness of possible storage resource leakage, including io::ErrorKind::NotFound. But sometimes the TieredStorage (or AccountsFile in general) instance is created then dropped without any file being created. This causes some false-alarms including unit-tests. #### Summary of Changes This PR excludes NotFound in reporting storage leakage on TieredStorage::drop().
- Loading branch information