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
If we try to remove an index entry or content entry when it's already deleted, cacache throw an io::ErrorKind::NotFound. This is fine, but when using RemoveOpts and remove_fully, a missing content file will throw an early error and prevent the deletion of the bucket.
A solution would be to simply ignore NotFound errors, as it is already in the intended final state.
The text was updated successfully, but these errors were encountered:
If we try to remove an index entry or content entry when it's already deleted, cacache throw an
io::ErrorKind::NotFound
. This is fine, but when usingRemoveOpts
andremove_fully
, a missing content file will throw an early error and prevent the deletion of the bucket.A solution would be to simply ignore NotFound errors, as it is already in the intended final state.
The text was updated successfully, but these errors were encountered: