You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2017/06/14 18:17:44 UTC

[2/2] activemq-artemis git commit: [ARTEMIS-1232] Configure deserialization lists on regular JMS CF

[ARTEMIS-1232] Configure deserialization lists on regular JMS CF

JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1232


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/f32cab64
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/f32cab64
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/f32cab64

Branch: refs/heads/master
Commit: f32cab6420cfcca156c4ebfe7f9bf5d9e428024a
Parents: 13a0a49
Author: Jeff Mesnil <jm...@gmail.com>
Authored: Wed Jun 14 17:16:09 2017 +0200
Committer: Justin Bertram <jb...@apache.org>
Committed: Wed Jun 14 13:17:21 2017 -0500

----------------------------------------------------------------------
 .../activemq/artemis/jms/server/impl/JMSServerManagerImpl.java     | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/f32cab64/artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/impl/JMSServerManagerImpl.java
----------------------------------------------------------------------
diff --git a/artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/impl/JMSServerManagerImpl.java b/artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/impl/JMSServerManagerImpl.java
index afa39e3..c652dc6 100644
--- a/artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/impl/JMSServerManagerImpl.java
+++ b/artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/impl/JMSServerManagerImpl.java
@@ -1210,6 +1210,8 @@ public class JMSServerManagerImpl implements JMSServerManager, ActivateCallback
       cf.setCompressLargeMessage(cfConfig.isCompressLargeMessages());
       cf.setGroupID(cfConfig.getGroupID());
       cf.setProtocolManagerFactoryStr(cfConfig.getProtocolManagerFactoryStr());
+      cf.setDeserializationBlackList(cfConfig.getDeserializationBlackList());
+      cf.setDeserializationWhiteList(cfConfig.getDeserializationWhiteList());
       return cf;
    }