Fix issue with cache entry access.

This commit is contained in:
Alex Hart 2022-12-12 12:51:57 -04:00
parent c3f9984346
commit 3cc556d803

View file

@ -118,7 +118,7 @@ public class DonationsService {
return new Pair<>(donationsConfiguration, 200); return new Pair<>(donationsConfiguration, 200);
}); });
} else { } else {
return wrapInServiceResponse(() -> new Pair<>(cacheEntryOutsideLock.donationsConfiguration, 200)); return wrapInServiceResponse(() -> new Pair<>(cacheEntryInLock.donationsConfiguration, 200));
} }
} }
} else { } else {