diff --git a/pkg/bootstrap/chain.go b/pkg/bootstrap/chain.go index 7b36f6a23d..a0bb85aa34 100644 --- a/pkg/bootstrap/chain.go +++ b/pkg/bootstrap/chain.go @@ -44,6 +44,9 @@ func (v *ChainVerifier) VerifyToken(ctx context.Context, rawRequest *http.Reques if err == ErrNotThisVerifier { continue } + if err == ErrAlreadyExists { + return nil, ErrAlreadyExists + } klog.Infof("failed to verify token: %v", err) } return nil, fmt.Errorf("unable to verify token")