We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8430b8 commit 1c4d5daCopy full SHA for 1c4d5da
javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/AgentInstaller.java
@@ -284,7 +284,8 @@ private static void installEarlyInstrumentation(
284
}
285
286
private static void copyNecessaryConfigToSystemProperties(ConfigProperties config) {
287
- for (String property : asList("otel.instrumentation.common.experimental.span-suppression-strategy")) {
+ for (String property :
288
+ asList("otel.instrumentation.common.experimental.span-suppression-strategy")) {
289
String value = config.getString(property);
290
if (value != null) {
291
System.setProperty(property, value);
0 commit comments