* /control/set_upstreams_config: allow empty upstream list

This commit is contained in:
Simon Zolin 2019-11-12 18:26:45 +03:00 committed by Ildar Kamalov
parent 4f4da3397c
commit 1b3122dd35

View file

@ -146,10 +146,12 @@ func (s *Server) handleSetUpstreamConfig(w http.ResponseWriter, r *http.Request)
return return
} }
err = ValidateUpstreams(req.Upstreams) if len(req.Upstreams) != 0 {
if err != nil { err = ValidateUpstreams(req.Upstreams)
httpError(r, w, http.StatusBadRequest, "wrong upstreams specification: %s", err) if err != nil {
return httpError(r, w, http.StatusBadRequest, "wrong upstreams specification: %s", err)
return
}
} }
newconf := FilteringConfig{} newconf := FilteringConfig{}