Skip to content

Commit

Permalink
Use correct datadog socket path method
Browse files Browse the repository at this point in the history
  • Loading branch information
ewhorton committed Apr 3, 2024
1 parent 37eccd7 commit b3077a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/racecar/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def configure_datadog
Datadog.configure do |datadog|
datadog.host = config.datadog_host unless config.datadog_host.nil?
datadog.port = config.datadog_port unless config.datadog_port.nil?
datadog.socket_path = config.socket_path unless config.socket_path.nil?
datadog.socket_path = config.datadog_socket_path unless config.datadog_socket_path.nil?
datadog.namespace = config.datadog_namespace unless config.datadog_namespace.nil?
datadog.tags = config.datadog_tags unless config.datadog_tags.nil?
end
Expand Down

0 comments on commit b3077a3

Please sign in to comment.