Skip to content

Commit

Permalink
Fix issue with cache entry access.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-signal committed Dec 12, 2022
1 parent c3f9984 commit 3cc556d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -118,7 +118,7 @@ public ServiceResponse<DonationsConfiguration> getDonationsConfiguration(Locale
return new Pair<>(donationsConfiguration, 200);
});
} else {
return wrapInServiceResponse(() -> new Pair<>(cacheEntryOutsideLock.donationsConfiguration, 200));
return wrapInServiceResponse(() -> new Pair<>(cacheEntryInLock.donationsConfiguration, 200));
}
}
} else {
Expand Down

0 comments on commit 3cc556d

Please sign in to comment.