fixing NPE
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9cbff99c Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9cbff99c Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9cbff99c Branch: refs/heads/artemis-1009 Commit: 9cbff99cd5439a16cd8cd51292660b97b07cf1a6 Parents: 7e6d183 Author: Clebert Suconic <[email protected]> Authored: Wed Mar 1 11:58:47 2017 -0500 Committer: Clebert Suconic <[email protected]> Committed: Wed Mar 1 12:19:03 2017 -0500 ---------------------------------------------------------------------- .../core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9cbff99c/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java ---------------------------------------------------------------------- diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java index 925181b..a6fd02b 100644 --- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java +++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/ReplicationAddTXMessage.java @@ -62,6 +62,7 @@ public class ReplicationAddTXMessage extends PacketImpl { this.id = id; this.recordType = recordType; this.encodingData = encodingData; + this.persister = persister; } // Public --------------------------------------------------------
