Skip to content

Commit

Permalink
Fix return values
Browse files Browse the repository at this point in the history
  • Loading branch information
hjkatz committed Nov 11, 2024
1 parent 614ab07 commit db21607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/bindings/boundendpoint_poller.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ func (r *BoundEndpointPoller) reconcileBoundEndpointAction(ctx context.Context,
// stop go routine and return, there is a new reconcile poll happening actively
case <-ctx.Done():
log.V(1).Info("Reconcile Action context canceled, stopping BoundEndpoint reconcile action loop early", "action", actionMsg)
return nil
return
case <-ticker.C:
log.V(9).Info("Received tick", "action", actionMsg, "remaining", remainingBindings)

Expand Down

0 comments on commit db21607

Please sign in to comment.