You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2018/08/13 14:53:12 UTC

[camel] branch master updated: CAMEL-12587: camel-zipkin-starter fails mapping service names (#2470)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 958e991  CAMEL-12587: camel-zipkin-starter fails mapping service names (#2470)
958e991 is described below

commit 958e9917991a877d65f828fb8e191ec0498d268a
Author: Viral Gohel <vg...@redhat.com>
AuthorDate: Mon Aug 13 20:23:08 2018 +0530

    CAMEL-12587: camel-zipkin-starter fails mapping service names (#2470)
---
 .../service1/src/main/resources/application.properties                | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/camel-example-zipkin/service1/src/main/resources/application.properties b/examples/camel-example-zipkin/service1/src/main/resources/application.properties
index e3f6ebe..54deb42 100644
--- a/examples/camel-example-zipkin/service1/src/main/resources/application.properties
+++ b/examples/camel-example-zipkin/service1/src/main/resources/application.properties
@@ -23,8 +23,8 @@ camel.springboot.main-run-controller=true
 camel.zipkin.endpoint=http://localhost:9411/api/v2/spans
 
 # the zipkin service name
-camel.zipkin.server-service-mappings.*=service1
-camel.zipkin.client-service-mappings.*=service2
+camel.zipkin.server-service-mappings.[*]=service1
+camel.zipkin.client-service-mappings.[*]=service2
 
 # include message bodies in the traces (not recommended for production)
 camel.zipkin.include-message-body-streams=true