Skip to content

Commit

Permalink
fix issue that httpclient plugin don’t work
Browse files Browse the repository at this point in the history
  • Loading branch information
ascrutae committed Jul 21, 2017
1 parent f3bc9d4 commit fdde4b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -20,7 +20,7 @@
*/
public class AbstractHttpClientInstrumentation extends HttpClientInstrumentation {

private static final String ENHANCE_CLASS = "org.apache.http.impl.discovery.AbstractHttpClient";
private static final String ENHANCE_CLASS = "org.apache.http.impl.client.AbstractHttpClient";

@Override
public ClassMatch enhanceClass() {
Expand Down
Expand Up @@ -17,7 +17,7 @@
*/
public class InternalHttpClientInstrumentation extends HttpClientInstrumentation {

private static final String ENHANCE_CLASS = "org.apache.http.impl.discovery.InternalHttpClient";
private static final String ENHANCE_CLASS = "org.apache.http.impl.client.InternalHttpClient";

@Override
public ClassMatch enhanceClass() {
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/
public class MinimalHttpClientInstrumentation extends HttpClientInstrumentation {

private static final String ENHANCE_CLASS = "org.apache.http.impl.discovery.MinimalHttpClient";
private static final String ENHANCE_CLASS = "org.apache.http.impl.client.MinimalHttpClient";

@Override
public ClassMatch enhanceClass() {
Expand Down

0 comments on commit fdde4b7

Please sign in to comment.