Ver código fonte

Merge pull request #103 from K900/patch-1

Fix statsd address
tags/1.0^2
Sergey Arkhipov 6 anos atrás
pai
commit
596fafe30d
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      stats/stats_statsd.go

+ 1
- 1
stats/stats_statsd.go Ver arquivo

@@ -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
 

Carregando…
Cancelar
Salvar