Skip to content

Commit

Permalink
Make 'dd.sqs.propagation.enabled' independent of 'dd.aws-sdk.propagat…
Browse files Browse the repository at this point in the history
…ion.enabled'
  • Loading branch information
mcculls committed Feb 17, 2023
1 parent ad8b489 commit f2bbe38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal-api/src/main/java/datadog/trace/api/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ private Config(final ConfigProvider configProvider, final InstrumenterConfig ins
debuggerExcludeFile = configProvider.getString(DEBUGGER_EXCLUDE_FILE);

awsPropagationEnabled = isPropagationEnabled(true, "aws", "aws-sdk");
sqsPropagationEnabled = awsPropagationEnabled && isPropagationEnabled(true, "sqs");
sqsPropagationEnabled = isPropagationEnabled(true, "sqs");

kafkaClientPropagationEnabled = isPropagationEnabled(true, "kafka", "kafka.client");
kafkaClientPropagationDisabledTopics =
Expand Down

0 comments on commit f2bbe38

Please sign in to comment.