Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #847 from rabi/fix_regression
Browse files Browse the repository at this point in the history
Use correct check for DNSData readiness
  • Loading branch information
openshift-merge-bot[bot] authored Apr 22, 2024
2 parents ac6621c + c15e39f commit 91a64b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/openstackdataplanenodeset_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (r *OpenStackDataPlaneNodeSetReconciler) Reconcile(ctx context.Context, req
err = dnsData.EnsureDNSData(
ctx, helper,
instance, allIPSets)
if err != nil || !isReady {
if err != nil || !dnsData.Ready {
return ctrl.Result{}, err
}

Expand Down

0 comments on commit 91a64b3

Please sign in to comment.