You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2021/08/26 08:45:36 UTC

[shardingsphere] branch master updated: Change agent conf (#12024)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b48fd36  Change agent conf (#12024)
b48fd36 is described below

commit b48fd36b287735186aaeb6c9b1b32746c5cb2790
Author: Dachuan J <46...@users.noreply.github.com>
AuthorDate: Thu Aug 26 16:44:43 2021 +0800

    Change agent conf (#12024)
---
 .../src/main/resources/conf/agent.yaml                                  | 2 +-
 .../tracing/opentracing/service/OpenTracingPluginBootService.java       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/shardingsphere-agent/shardingsphere-agent-distribution/src/main/resources/conf/agent.yaml b/shardingsphere-agent/shardingsphere-agent-distribution/src/main/resources/conf/agent.yaml
index fd3ee2f..a9ea212 100644
--- a/shardingsphere-agent/shardingsphere-agent-distribution/src/main/resources/conf/agent.yaml
+++ b/shardingsphere-agent/shardingsphere-agent-distribution/src/main/resources/conf/agent.yaml
@@ -18,7 +18,7 @@
 applicationName: shardingsphere-agent
 ignoredPluginNames:
   - Jaeger
-  - Opentracing
+  - OpenTracing
   - Zipkin
   - Prometheus
   - OpenTelemetry
diff --git a/shardingsphere-agent/shardingsphere-agent-plugins/shardingsphere-agent-plugin-tracing/shardingsphere-agent-tracing-opentracing/src/main/java/org/apache/shardingsphere/agent/plugin/tracing/opentracing/service/OpenTracingPluginBootService.java b/shardingsphere-agent/shardingsphere-agent-plugins/shardingsphere-agent-plugin-tracing/shardingsphere-agent-tracing-opentracing/src/main/java/org/apache/shardingsphere/agent/plugin/tracing/opentracing/service/OpenTracingPluginBootService.java
index 35c2fe7..ad4895e 100644
--- a/shardingsphere-agent/shardingsphere-agent-plugins/shardingsphere-agent-plugin-tracing/shardingsphere-agent-tracing-opentracing/src/main/java/org/apache/shardingsphere/agent/plugin/tracing/opentracing/service/OpenTracingPluginBootService.java
+++ b/shardingsphere-agent/shardingsphere-agent-plugins/shardingsphere-agent-plugin-tracing/shardingsphere-agent-tracing-opentracing/src/main/java/org/apache/shardingsphere/agent/plugin/tracing/opentracing/service/OpenTracingPluginBootService.java
@@ -51,6 +51,6 @@ public final class OpenTracingPluginBootService implements PluginBootService {
     
     @Override
     public String getType() {
-        return "Opentracing";
+        return "OpenTracing";
     }
 }