From 011faf90571a1056195cc3c489788143b3ba26bc Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Mon, 7 Sep 2015 19:15:28 +0200 Subject: [PATCH] Fix typo in comment. --- storage/local/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/local/storage.go b/storage/local/storage.go index 7c1ae9726..a995f270f 100644 --- a/storage/local/storage.go +++ b/storage/local/storage.go @@ -887,7 +887,7 @@ loop: // while in a situation like that, where we are clearly lacking speed of disk // maintenance, the best we can do for crash recovery is to persist chunks as // quickly as possible. So only checkpoint if the storage is not in "graceful - // degratadion mode". + // degradation mode". if dirtySeriesCount >= s.checkpointDirtySeriesLimit && !s.isDegraded() { checkpointTimer.Reset(0) }