Fix issue with cache entry access.
This commit is contained in:
parent
c3f9984346
commit
3cc556d803
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue