Skip to content

Commit 1f20468

Browse files
authored
Update instrumentation-api/src/main/java/io/opentelemetry/instrumentation/api/semconv/http/HttpClientAttributesExtractor.java
1 parent bbed3b3 commit 1f20468

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

instrumentation-api/src/main/java/io/opentelemetry/instrumentation/api/semconv/http/HttpClientAttributesExtractor.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,8 @@ private static String redactQueryParameters(String url) {
199199
urlAfterQuestionMark.append(url.substring(i));
200200
break;
201201
} else {
202-
currentParamName.append(
203-
currentChar); // param values can be appended to currentParamName here but it's not an
204-
// issue
202+
// param values can be appended to currentParamName here but it's not an issue
203+
currentParamName.append(currentChar);
205204
urlAfterQuestionMark.append(currentChar);
206205
}
207206
}

0 commit comments

Comments
 (0)