handle error

This commit is contained in:
Kirill Zhuravlev 2023-02-26 01:14:29 +01:00 committed by Avelino
parent 6de5e8b19f
commit 625df2fec3
No known key found for this signature in database
GPG Key ID: B345B4D52E98180A

View File

@ -237,7 +237,9 @@ func checkRepoCommitActivity(toRun bool, href string, client *http.Client) ([]st
var respObj []map[string]interface{} var respObj []map[string]interface{}
// FIXME: handle error in all that cases // FIXME: handle error in all that cases
json.NewDecoder(resp.Body).Decode(&respObj) if err := json.NewDecoder(resp.Body).Decode(&respObj); err != nil {
return nil, false
}
var warnings []string var warnings []string
var isRepoAdded bool var isRepoAdded bool
@ -296,7 +298,7 @@ func TestStaleRepository(t *testing.T) {
log.Printf("%s non-github repo not currently handled", href) log.Printf("%s non-github repo not currently handled", href)
} }
// FIXME: this is `or` expression. Probably we need `and`? // FIXME: this is `or` expres24sion. Probably we need `and`?
warnings, isRepoAdded := checkRepoAvailability(true, href, client) warnings, isRepoAdded := checkRepoAvailability(true, href, client)
staleRepos = append(staleRepos, warnings...) staleRepos = append(staleRepos, warnings...)