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

This commit is contained in:
bingoohuang
2020-05-25 21:00:12 +08:00
parent 16fc3fb1a0
commit ecdeef8c66
2 changed files with 2 additions and 2 deletions

View File

@@ -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)