Merge pull request #5420 from mrmx/master

Log swallowed exceptions in RedissonRemoteService
pull/5427/head
Nikita Koksharov 1 year ago committed by GitHub
commit 9d7a078564
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -364,6 +364,13 @@ public class RedissonRemoteService extends BaseRemoteService implements RRemoteS
} else { } else {
executeMethod(remoteInterface, requestQueue, executor, request, bean); executeMethod(remoteInterface, requestQueue, executor, request, bean);
} }
})
.exceptionally(exc -> {
if (exc instanceof RedissonShutdownException) {
return null;
}
log.error("Can't process the remote service request with id {}", requestId, exc);
return null;
}); });
}); });
} }

Loading…
Cancel
Save