We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 594f3ae commit 3ee1365Copy full SHA for 3ee1365
javaagent-core/src/main/java/org/hypertrace/agent/core/config/EnvironmentConfig.java
@@ -73,6 +73,7 @@ public static AgentConfig.Builder applyPropertiesAndEnvVars(AgentConfig.Builder
73
private static void applyPropagationFormat(AgentConfig.Builder builder) {
74
String propagationFormats = getProperty(PROPAGATION_FORMATS);
75
if (propagationFormats != null) {
76
+ builder.clearPropagationFormats();
77
String[] formats = propagationFormats.split(",");
78
for (String format : formats) {
79
builder.addPropagationFormats(PropagationFormat.valueOf(format));
0 commit comments