Skip to content

Commit aad37d2

Browse files
committed
fix: use lowercase config key in Javadoc example
Fixes Copilot review comment: ConfigInitializer maps fields to lowercase keys, so the example should read plugin.httpclient.propagation_exclude_ports instead of uppercase.
1 parent bd53bbd commit aad37d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apm-sniffer/apm-sdk-plugin/httpclient-commons/src/main/java/org/apache/skywalking/apm/plugin/httpclient/HttpClientPluginConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static class HttpClient {
4343
* <p>Default: {@code "8123"} (ClickHouse HTTP interface).
4444
*
4545
* <p>Example – also exclude port 9200 (Elasticsearch):
46-
* {@code plugin.httpclient.PROPAGATION_EXCLUDE_PORTS=8123,9200}
46+
* {@code plugin.httpclient.propagation_exclude_ports=8123,9200}
4747
*/
4848
public static String PROPAGATION_EXCLUDE_PORTS = "8123";
4949
}

0 commit comments

Comments
 (0)