You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@activemq.apache.org by GitBox <gi...@apache.org> on 2021/05/12 17:22:08 UTC

[GitHub] [activemq-artemis] erwindon commented on a change in pull request #3561: ARTEMIS-3258 added warning for url parameters that are explicitly ignored

erwindon commented on a change in pull request #3561:
URL: https://github.com/apache/activemq-artemis/pull/3561#discussion_r631244582



##########
File path: artemis-core-client/src/main/java/org/apache/activemq/artemis/core/config/federation/FederationDownstreamConfiguration.java
##########
@@ -40,23 +41,30 @@ public TransportConfiguration getUpstreamConfiguration() {
       return upstreamConfiguration;
    }
 
+   private void stripParam(Map<String, Object> params, String name) {
+	   Object oldValue = params.remove(name);
+	   if (oldValue != null) {
+		   ActiveMQClientLogger.LOGGER.ignoredParameterForDownstreamFederation(name);
+	   }

Review comment:
       I just saw the build report too. I'll soon fix that...




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org