From 3bf8ed2a081541e0d633704fad3546e226ec20a6 Mon Sep 17 00:00:00 2001 From: Thomas Fan Date: Fri, 6 Jul 2018 11:54:34 -0400 Subject: [PATCH] RFC: Removes unused mutex --- actions/reconfigure.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/actions/reconfigure.go b/actions/reconfigure.go index 0b03fe3a..a64ac269 100644 --- a/actions/reconfigure.go +++ b/actions/reconfigure.go @@ -7,7 +7,6 @@ import ( "os" "strconv" "strings" - "sync" "../proxy" ) @@ -15,8 +14,6 @@ import ( const serviceTemplateFeFilename = "service-formatted-fe.ctmpl" const serviceTemplateBeFilename = "service-formatted-be.ctmpl" -var mu = &sync.Mutex{} - // Reconfigurable defines mandatory interface type Reconfigurable interface { Execute(reloadAfter bool) error