Skip to content

Commit

Permalink
fix a small issue with the logic in the should-enable-trace-agent logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoggopat committed Oct 9, 2024
1 parent b2f0dff commit 514445b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/datadog/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ false
Return true if a trace-agent needs to be deployed.
*/}}
{{- define "should-enable-trace-agent" -}}
{{- if or (eq (include "trace-agent-use-tcp-port" .) "true") (eq (include "trace-agent-use-uds" .) "true") (eq (include "trace-agent-use-local-service")) -}}
{{- if or (eq (include "trace-agent-use-tcp-port" .) "true") (eq (include "trace-agent-use-uds" .) "true") (eq (include "trace-agent-use-local-service" .) "true") -}}
true
{{- else -}}
false
Expand Down

0 comments on commit 514445b

Please sign in to comment.