Browse Source

simplify func(w http.ResponseWriter, r *http.Request) to http.HandlerFunc

bingoohuang 4 years ago
parent
commit
ecdeef8c66
2 changed files with 2 additions and 2 deletions
  1. 1 1
      weed/security/guard.go
  2. 1 1
      weed/server/master_server.go

+ 1 - 1
weed/security/guard.go

@@ -62,7 +62,7 @@ func NewGuard(whiteList []string, signingKey string, expiresAfterSec int, readSi
 	return g
 }
 
-func (g *Guard) WhiteList(f func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
+func (g *Guard) WhiteList(f http.HandlerFunc) http.HandlerFunc {
 	if !g.isWriteActive {
 		//if no security needed, just skip all checking
 		return f

+ 1 - 1
weed/server/master_server.go

@@ -156,7 +156,7 @@ func (ms *MasterServer) SetRaftServer(raftServer *RaftServer) {
 	}
 }
 
-func (ms *MasterServer) proxyToLeader(f func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
+func (ms *MasterServer) proxyToLeader(f http.HandlerFunc) http.HandlerFunc {
 	return func(w http.ResponseWriter, r *http.Request) {
 		if ms.Topo.IsLeader() {
 			f(w, r)