func()

in plugin/source/http/http.go [188:198]


func (s *Source) checkStatusCode(resp *http.Response) bool {
	if resp.StatusCode != 200 {
		for _, code := range s.ValidStatusCodes {
			if resp.StatusCode == code {
				return true
			}
		}
		return false
	}
	return true
}