Github user jmesnil commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1764#discussion_r160605094
--- Diff:
artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQConnectionFactory.java
---
@@ -188,13 +189,15 @@ public void setDeserializationWhiteList(String
whiteList) {
@Override
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
String url = in.readUTF();
+ System.out.println("Reading " + url);
ConnectionFactoryParser parser = new ConnectionFactoryParser();
ServerLocatorParser locatorParser = new ServerLocatorParser();
try {
URI uri = new URI(url);
serverLocator = locatorParser.newObject(uri, null);
parser.populateObject(uri, this);
} catch (Exception e) {
+ e.printStackTrace();
--- End diff --
should be removed
---