diff options
author | Kim Alvefur <zash@zash.se> | 2016-10-18 19:07:55 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-10-18 19:07:55 +0200 |
commit | f1c2f29484997c0a953a248241768df1c3736df5 (patch) | |
tree | a7bd7a664b80ac2d321bef9ef2e7a465e32982a5 /util/statsd.lua | |
parent | da9ff7d218486105eb2e529cfe8e22346aa53430 (diff) | |
parent | 5bbd2aa2ff4137e9dc7b47ee76723319cbfc75dc (diff) | |
download | prosody-f1c2f29484997c0a953a248241768df1c3736df5.tar.gz prosody-f1c2f29484997c0a953a248241768df1c3736df5.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/statsd.lua')
-rw-r--r-- | util/statsd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/statsd.lua b/util/statsd.lua index 2874e8a8..e5322de9 100644 --- a/util/statsd.lua +++ b/util/statsd.lua @@ -44,7 +44,7 @@ local function new(config) end return function (new_v) send_gauge(name, new_v); end end; - counter = function (name, initial) + counter = function (name, initial) --luacheck: ignore 212/initial return function (delta) send_gauge(name, delta, true); end; |