Sfoglia il codice sorgente

Fix statsd address

It used the wrong variable.
tags/1.0^2
K900 6 anni fa
parent
commit
e465817011
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      stats/stats_statsd.go

+ 1
- 1
stats/stats_statsd.go Vedi File

@@ -87,7 +87,7 @@ func newStatsStatsd() (Interface, error) {
87 87
 	options := []statsd.Option{
88 88
 		statsd.Prefix(config.C.StatsNamespace),
89 89
 		statsd.Network(config.C.StatsdNetwork),
90
-		statsd.Address(config.C.StatsBind.String()),
90
+		statsd.Address(config.C.StatsdAddr.String()),
91 91
 		statsd.TagsFormat(config.C.StatsdTagsFormat),
92 92
 	}
93 93
 

Loading…
Annulla
Salva