From ab8e9b7423fdf725224c7ca96216e5556e59c360 Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Sun, 3 Mar 2019 03:35:29 -0800 Subject: [PATCH] fix typo in queue_manager.go comment (#5294) Signed-off-by: tariqibrahim --- 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 3ffd2f8af..25aa0365d 100644 --- a/storage/remote/queue_manager.go +++ b/storage/remote/queue_manager.go @@ -529,7 +529,7 @@ func (s *shards) start(n int) { // stop the shards; subsequent call to enqueue will return false. func (s *shards) stop() { // Attempt a clean shutdown, but only wait flushDeadline for all the shards - // to cleanly exit. As we're doing RPCs, enqueue can block indefinately. + // to cleanly exit. As we're doing RPCs, enqueue can block indefinitely. // We must be able so call stop concurrently, hence we can only take the // RLock here. s.mtx.RLock()