diff options
-rwxr-xr-x | bin/logster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/logster b/bin/logster index 4bc1f62..a0f31de 100755 --- a/bin/logster +++ b/bin/logster @@ -207,7 +207,7 @@ def submit_graphite(metrics, options): logger.debug("Submitting Graphite metric: %s" % metric_string) if (not options.dry_run): - s.send("%s\n" % metric_string) + s.sendall("%s\n" % metric_string) else: print "%s %s" % (options.graphite_host, metric_string) |