wu-sheng closed pull request #1292: Fix the interceptor class is incorrect
URL: https://github.com/apache/incubator-skywalking/pull/1292
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/apm-sniffer/apm-sdk-plugin/jedis-2.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jedis/v2/define/JedisInstrumentation.java
 
b/apm-sniffer/apm-sdk-plugin/jedis-2.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jedis/v2/define/JedisInstrumentation.java
index 272316ebf..07e7f2bc4 100644
--- 
a/apm-sniffer/apm-sdk-plugin/jedis-2.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jedis/v2/define/JedisInstrumentation.java
+++ 
b/apm-sniffer/apm-sdk-plugin/jedis-2.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jedis/v2/define/JedisInstrumentation.java
@@ -38,6 +38,7 @@
     private static final String ENHANCE_CLASS = "redis.clients.jedis.Jedis";
     private static final String CONSTRUCTOR_WITH_STRING_ARG_INTERCEPT_CLASS = 
"org.apache.skywalking.apm.plugin.jedis.v2.JedisConstructorWithStringArgInterceptor";
     private static final String 
CONSTRUCTOR_WITH_SHARD_INFO_ARG_INTERCEPT_CLASS = 
"org.apache.skywalking.apm.plugin.jedis.v2.JedisConstructorWithShardInfoArgInterceptor";
+    private static final String CONSTRUCTOR_WITH_HOST_AND_PORT_INTERCEPT_CLASS 
= 
"org.apache.skywalking.apm.plugin.jedis.v2.JedisClusterConstructorWithHostAndPortArgInterceptor";
     private static final String CONSTRUCTOR_WITH_URI_ARG_INTERCEPT_CLASS = 
"org.apache.skywalking.apm.plugin.jedis.v2.JedisConstructorWithUriArgInterceptor";
     private static final String JEDIS_METHOD_INTERCET_CLASS = 
"org.apache.skywalking.apm.plugin.jedis.v2.JedisMethodInterceptor";
 
@@ -68,7 +69,7 @@ public String getConstructorInterceptor() {
 
                 @Override
                 public String getConstructorInterceptor() {
-                    return CONSTRUCTOR_WITH_SHARD_INFO_ARG_INTERCEPT_CLASS;
+                    return CONSTRUCTOR_WITH_HOST_AND_PORT_INTERCEPT_CLASS;
                 }
             },
             new ConstructorInterceptPoint() {


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to