fix(hermes): repair sonar/metis/go:S4144/AZ3Aes6wKy9i4pkIsOW8 #3

Open
bstein wants to merge 1 commits from hermes-repair/sonar-AZ3Aes6wKy9i4pkIsOW8 into master

View File

@ -150,17 +150,7 @@ func statusForJobError(err error) int {
}
func (a *App) handleWatch(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
http.Error(w, "method not allowed", http.StatusMethodNotAllowed)
return
}
event, err := a.WatchSentinel()
if err != nil {
a.metrics.RecordWatch("error")
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
writeJSON(w, http.StatusOK, event)
a.handleInternalWatch(w, r)
}
func (a *App) handleIndex(w http.ResponseWriter, r *http.Request) {