From 358e6827cd1fd5c4dce86692b0559bd5637d3e2d Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Mon, 30 Oct 2017 16:51:28 -0700 Subject: [PATCH] Update cluster.go --- lib/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cluster.go b/lib/cluster.go index 72d58b9ee3..79da2e458f 100644 --- a/lib/cluster.go +++ b/lib/cluster.go @@ -7,7 +7,7 @@ import ( const ( // minRate is the minimum rate at which we allow an action to be performed - // acorss the whole cluster. The value is once a day: 1 / (1 * time.Day) + // across the whole cluster. The value is once a day: 1 / (1 * time.Day) minRate = 1.0 / 86400 )