Skip to content

Commit

Permalink
fix a flake where the informer didn't have KPA (knative#12934)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso authored May 12, 2022
1 parent 9b7788c commit fd6b191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/reconciler/revision/revision_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ func TestGlobalResyncOnDefaultCMChange(t *testing.T) {
if ierr := wait.PollImmediate(50*time.Millisecond, 6*time.Second, func() (bool, error) {
_, err = paL.Get(rev.Name)
if apierrs.IsNotFound(err) {
return false, err
return false, nil
}
return err == nil, err
}); ierr != nil {
Expand Down

0 comments on commit fd6b191

Please sign in to comment.