Keep in-memory cache consistent when file deletion fails#3163
Merged
bidetofevil merged 1 commit intomainfrom Mar 30, 2026
Merged
Keep in-memory cache consistent when file deletion fails#3163bidetofevil merged 1 commit intomainfrom
bidetofevil merged 1 commit intomainfrom
Conversation
This was referenced Mar 24, 2026
Contributor
Author
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3163 +/- ##
==========================================
+ Coverage 77.89% 78.00% +0.10%
==========================================
Files 558 558
Lines 11931 11973 +42
Branches 1782 1792 +10
==========================================
+ Hits 9294 9339 +45
+ Misses 1927 1924 -3
Partials 710 710
🚀 New features to boost your workflow:
|
This was referenced Mar 24, 2026
976a1c1 to
a8128a4
Compare
78ea7be to
f10c7a0
Compare
f10c7a0 to
f3f2a17
Compare
This was referenced Mar 26, 2026
Contributor
Author
Merge activity
|
f3f2a17 to
3477481
Compare
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Snapshot WarningsEnsure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. Scanned FilesNone |
This was referenced Mar 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Goal
Remove file from in-memory cache regardless of whether the delete was successful. This addresses an inconsistency that was bubbled up through the PayloadStorageServiceImpl where when delete calls faile at the FileSystemService level, it did not remove the payload from the in-memory cache, leading to the PayloadStorageService thinking that it was still there.