From 18bc77c35940c74845e2d2bc6770350b72ceba35 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 14 Feb 2017 11:36:21 -0800 Subject: [PATCH] command/state: up the threshold for showing lock info --- command/state/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/state/state.go b/command/state/state.go index f4c7406d3..f4b4b1bc1 100644 --- a/command/state/state.go +++ b/command/state/state.go @@ -16,7 +16,7 @@ import ( ) const ( - LockThreshold = 250 * time.Millisecond + LockThreshold = 400 * time.Millisecond LockMessage = "Acquiring state lock. This may take a few moments..." UnlockMessage = "Releasing state lock. This may take a few moments..."