From d79e0d2ad5ac62f8104f14d2e5cb89728a357f2f Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Mon, 23 Oct 2017 16:06:27 -0400 Subject: [PATCH] Remove extra curly brace --- vault/core.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vault/core.go b/vault/core.go index b592488248..78b2526578 100644 --- a/vault/core.go +++ b/vault/core.go @@ -12,6 +12,7 @@ import ( "net/url" "path/filepath" "sync" + "sync/atomic" "time" "github.com/armon/go-metrics" @@ -521,7 +522,6 @@ func NewCore(conf *CoreConfig) (*Core, error) { c.physical = physical.NewCache(phys, conf.CacheSize, conf.Logger) } } - } if !conf.DisableMlock { // Ensure our memory usage is locked into physical RAM