Skip to content

Commit a9a53a8

Browse files
authored
check for 406 status code when handling referrers endpoint response (#2026)
Signed-off-by: Meredith Lancaster <[email protected]>
1 parent 4630c40 commit a9a53a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/v1/remote/referrers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func (f *fetcher) fetchReferrers(ctx context.Context, filter map[string]string,
6161
}
6262
defer resp.Body.Close()
6363

64-
if err := transport.CheckError(resp, http.StatusOK, http.StatusNotFound, http.StatusBadRequest); err != nil {
64+
if err := transport.CheckError(resp, http.StatusOK, http.StatusNotFound, http.StatusBadRequest, http.StatusNotAcceptable); err != nil {
6565
return nil, err
6666
}
6767

0 commit comments

Comments
 (0)