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/c58a3d0a Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/c58a3d0a Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/c58a3d0a Branch: refs/heads/artemis-1009 Commit: c58a3d0a9bb88414f979d6dd552ee164bd82a5d6 Parents: a333045 Author: Clebert Suconic <[email protected]> Authored: Wed Mar 1 11:58:47 2017 -0500 Committer: Clebert Suconic <[email protected]> Committed: Thu Mar 2 10:05:21 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/c58a3d0a/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 --------------------------------------------------------
