From 13c6e4a4bcdc07cf63a01ee6e59511f20a78bac3 Mon Sep 17 00:00:00 2001 From: Matt Bostock Date: Tue, 4 Jul 2017 20:48:52 +0100 Subject: [PATCH] Remote queue manager: Fix typo Change 'send' to 'sent'. --- storage/remote/queue_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/remote/queue_manager.go b/storage/remote/queue_manager.go index 40c5a5eb4..9891546f5 100644 --- a/storage/remote/queue_manager.go +++ b/storage/remote/queue_manager.go @@ -303,7 +303,7 @@ func (t *QueueManager) calculateDesiredShards() { // We use the number of incoming samples as a prediction of how much work we // will need to do next iteration. We add to this any pending samples - // (received - send) so we can catch up with any backlog. We use the average + // (received - sent) so we can catch up with any backlog. We use the average // outgoing batch latency to work out how many shards we need. var ( samplesIn = t.samplesIn.rate()