diff --git a/agent/http.go b/agent/http.go index 102a893fd1..e639d7d7b6 100644 --- a/agent/http.go +++ b/agent/http.go @@ -152,9 +152,9 @@ func (s *HTTPServer) handler(enableDebug bool) http.Handler { if err != nil { new_ui = false } - var uifs http.FileSystem; + var uifs http.FileSystem - // Use the custom UI dir if provided. + // Use the custom UI dir if provided. if s.agent.config.UIDir != "" { uifs = http.Dir(s.agent.config.UIDir) } else { @@ -164,14 +164,14 @@ func (s *HTTPServer) handler(enableDebug bool) http.Handler { fs.Prefix += "/v2/" } else { fs.Prefix += "/v1/" - } + } uifs = fs } - + if new_ui { - uifs = &redirectFS{fs:uifs} + uifs = &redirectFS{fs: uifs} } - + mux.Handle("/ui/", http.StripPrefix("/ui/", http.FileServer(uifs))) } diff --git a/lib/serf.go b/lib/serf.go index 715e07b785..ce2504a91d 100644 --- a/lib/serf.go +++ b/lib/serf.go @@ -23,6 +23,5 @@ func SerfDefaultConfig() *serf.Config { // (using https://www.serf.io/docs/internals/simulator.html). base.LeavePropagateDelay = 3 * time.Second - return base }