[
https://issues.apache.org/jira/browse/ARTEMIS-1365?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16256771#comment-16256771
]
ASF GitHub Bot commented on ARTEMIS-1365:
-----------------------------------------
Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1647#discussion_r151645844
--- Diff:
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/management/OpenWireManagementTest.java
---
@@ -55,6 +87,19 @@ public void setUp() throws Exception {
@Override
protected void extraServerConfig(Configuration serverConfig) {
serverConfig.setJMXManagementEnabled(true);
+ if (useDefault) {
+ //don't set parameters explicitly
+ return;
+ }
+ Set<TransportConfiguration> acceptorConfigs =
serverConfig.getAcceptorConfigurations();
+ for (TransportConfiguration tconfig : acceptorConfigs) {
+ if ("netty".equals(tconfig.getName())) {
+ Map<String, Object> params = tconfig.getExtraParams();
+ params.put("supportAdvisory", supportAdvisory);
+ params.put("suppressInternalManagementObjects", suppressJmx);
+ System.out.println("Now use properties: " + params);
--- End diff --
@gaohoward just spotted another
> Openwire producer is listed in hawtio console as consumer from
> ActiveMQ.Advisory queue
> ---------------------------------------------------------------------------------------
>
> Key: ARTEMIS-1365
> URL: https://issues.apache.org/jira/browse/ARTEMIS-1365
> Project: ActiveMQ Artemis
> Issue Type: Bug
> Components: OpenWire
> Affects Versions: 2.3.0
> Environment: latest upstream 2.3.0 with hawtio
> Reporter: Michal Toth
> Assignee: Howard Gao
> Priority: Critical
> Attachments: openwire.png
>
>
> Having one openwire jms client which is sending messages to queue is listed
> in new console as consumer from activemq.advisory multicast queue. There is
> no information about producing messages to any queue at all.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)