Browse Source

invalidate agent token on 403 as well (#1888)

blotus 2 năm trước cách đây
mục cha
commit
c5079ac15e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      pkg/apiclient/auth.go

+ 1 - 1
pkg/apiclient/auth.go

@@ -194,7 +194,7 @@ func (t *JWTTransport) RoundTrip(req *http.Request) (*http.Response, error) {
 		dump, _ := httputil.DumpResponse(resp, true)
 		log.Tracef("resp-jwt: %s (err:%v)", string(dump), err)
 	}
-	if err != nil || resp.StatusCode == 401 {
+	if err != nil || resp.StatusCode == http.StatusForbidden || resp.StatusCode == http.StatusUnauthorized {
 		/*we had an error (network error for example, or 401 because token is refused), reset the token ?*/
 		t.token = ""
 		return resp, errors.Wrapf(err, "performing jwt auth")