Skip to content

Commit 0e14a5c

Browse files
committed
fix hard to spot typo
1 parent b678d5d commit 0e14a5c

File tree

1 file changed

+1
-1
lines changed
  • instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apachehttpclient/v5_0

1 file changed

+1
-1
lines changed

instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apachehttpclient/v5_0/ApacheHttpClientInstrumentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public static Object[] methodEnter(
295295

296296
// Wrap the handler so we capture the status code
297297
if (handler != null) {
298-
scope.wrapResponseHandler(handler);
298+
handler = scope.wrapResponseHandler(handler);
299299
}
300300
return new Object[] {scope, handler};
301301
}

0 commit comments

Comments
 (0)