Skip to content

Commit

Permalink
KEYCLOAK-5832 Fix the issue with RemoveExpiredCommand exception on JD…
Browse files Browse the repository at this point in the history
…G side
  • Loading branch information
mposolda authored and hmlnarik committed Nov 22, 2017
1 parent afd906b commit 61c5a33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private void hotrodEventReceived(String key) {
try {
listenersExecutor.submit(() -> {

Object value = workCache.get(key);
Object value = remoteCache.get(key);
eventReceived(key, (Serializable) value);

});
Expand Down

0 comments on commit 61c5a33

Please sign in to comment.