diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-03-27 14:10:37 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-03-27 14:10:37 +0200 |
commit | b4d21068485572aeb72971d0aaaf8d5cbb4e3641 (patch) | |
tree | 65cdf9bd243a8fab88ef54a1d2c07502a3cb42c3 /src | |
parent | ab4ba32b074ce6acceb872425a986fa65e199f9d (diff) | |
download | rspamd-b4d21068485572aeb72971d0aaaf8d5cbb4e3641.tar.gz rspamd-b4d21068485572aeb72971d0aaaf8d5cbb4e3641.zip |
[Minor] Fix changes to changes
- Reported by: @tleuxner
- Pointy hat to: @fatalbanana
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/metric_exporter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/metric_exporter.lua b/src/plugins/lua/metric_exporter.lua index 107d034da..dfd7f64bd 100644 --- a/src/plugins/lua/metric_exporter.lua +++ b/src/plugins/lua/metric_exporter.lua @@ -125,7 +125,7 @@ local function graphite_push(kwargs) timeout = settings['timeout'], read = false, data = { - {metrics_str, '\n'}, + metrics_str, '\n', }, callback = (function (err) if err then |