albertogpz commented on a change in pull request #4928: URL: https://github.com/apache/geode/pull/4928#discussion_r421353723
########## File path: geode-core/src/main/java/org/apache/geode/internal/cache/wan/GatewaySenderEventImpl.java ########## @@ -725,6 +748,18 @@ protected void serializeKey(DataOutput out, @Override public void fromData(DataInput in, DeserializationContext context) throws IOException, ClassNotFoundException { + fromDataPre_GEODE_1_13_0_0(in, context); + if (version >= Version.GEODE_1_13_0.ordinal()) { + boolean hasTransaction = DataSerializer.readBoolean(in); + if (hasTransaction) { + this.isLastEventInTransaction = DataSerializer.readBoolean(in); + this.transactionId = context.getDeserializer().readObject(in); + } + } + } + + public void fromDataPre_GEODE_1_13_0_0(DataInput in, DeserializationContext context) Review comment: I agree as above. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org