Skip to content

Commit

Permalink
reverting return on error if objectbucketclaim not found (#977)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcaton85 authored Oct 11, 2024
1 parent 1de9a8b commit 1536f3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion controllers/quay/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@ func (r *QuayRegistryReconciler) checkObjectBucketClaimsAvailable(
return nil
}

return fmt.Errorf("`ObjectBucketClaim` not found")
r.Log.Info("`ObjectBucketClaim` not found")
return nil
}

// checkBuildManagerAvailable verifies if the config bundle contains an entry pointing to the
Expand Down

0 comments on commit 1536f3d

Please sign in to comment.