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/c989c68b Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/c989c68b Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/c989c68b Branch: refs/heads/artemis-1009 Commit: c989c68bef65b34eff833024cc80d90940964eb6 Parents: 3461ed6 Author: Clebert Suconic <[email protected]> Authored: Wed Mar 1 11:58:47 2017 -0500 Committer: Clebert Suconic <[email protected]> Committed: Thu Mar 2 20:04:30 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/c989c68b/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 --------------------------------------------------------
