Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
Fix double . in failure name
Browse files Browse the repository at this point in the history
  • Loading branch information
scoiatael committed Mar 9, 2017
1 parent 4fc0fde commit a3310f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telemetry/datadog.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (c *Client) on_error(err error) {

func (c *Client) Failure(title, text string) {
if c.initialized {
title = c.client.Namespace + "." + title
title = c.client.Namespace + title
ev := statsd.NewEvent(title, text)
ev.AlertType = statsd.Error
err := errors.Wrap(c.client.Event(ev), "Failed sending event to DataDog")
Expand Down

0 comments on commit a3310f7

Please sign in to comment.