This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new a7ec9eb79d4 ARTEMIS-4715: adjust the wildcard to use the correct
wildcard character
a7ec9eb79d4 is described below
commit a7ec9eb79d47e061e2243d88ea34b42e8f31d647
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Apr 10 09:51:29 2024 +0200
ARTEMIS-4715: adjust the wildcard to use the correct wildcard character
---
.../test/java/org/apache/camel/component/activemq/ActiveMQRouteIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-activemq/src/test/java/org/apache/camel/component/activemq/ActiveMQRouteIT.java
b/components/camel-activemq/src/test/java/org/apache/camel/component/activemq/ActiveMQRouteIT.java
index eb303baf4fa..e38ca73af86 100644
---
a/components/camel-activemq/src/test/java/org/apache/camel/component/activemq/ActiveMQRouteIT.java
+++
b/components/camel-activemq/src/test/java/org/apache/camel/component/activemq/ActiveMQRouteIT.java
@@ -107,7 +107,7 @@ public class ActiveMQRouteIT extends ActiveMQITSupport {
.to("log:routing")
.to("mock:result");
- from("activemq:queue:wildcard.#")
+ from("activemq:queue:wildcard.>")
.to("log:routing")
.to("mock:result");