xtern commented on code in PR #10145:
URL: https://github.com/apache/ignite/pull/10145#discussion_r922208063
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/services/PlatformAbstractService.java:
##########
@@ -240,11 +243,13 @@ public void setIgniteInstance(Ignite ignite) {
@Override public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
svc = in.readObject();
srvKeepBinary = in.readBoolean();
+ interceptors = in.readObject();
Review Comment:
AFAIK, Ignite does not provide such type of compatibility (you can't run a
cluster with different Ignite versions) - only thin client protocol and
persistence provide backwards compatibility.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]