-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exception from weigher is ignored in an AsyncCache #1687
Comments
It must be these lines below that need to handle if the replacement fails exceptionally. The future completed and the dependent action tries to update the metadata. In a synchronous cache the operation would fail untouched, as one would expect, but here we already stored it and need to unpin it (has a weight of zero while in-flight). It would need to log the exception try to conditionally remove it in that scenario, which would bubble up to the removal listener as the caffeine/caffeine/src/main/java/com/github/benmanes/caffeine/cache/LocalAsyncCache.java Lines 217 to 219 in a03e95d
|
I have most of this ready in the v3.dev branch. I'll try to wrap up the unit tests this weekend, as I need to also cover when the |
Here's a test case:
The first case:
throws as expected. The cache also remains empty after the exception.
The second case:
however, does not throw at all. Probably impossible to get it to throw due to how
CompletableFuture
s are structured, but the exception doesn't seem to be logged anywhere either. It seems to be silently ignored. Also, the entry remains in the cache after the exception.The text was updated successfully, but these errors were encountered: