Skip to content

Commit

Permalink
change log level to debug when pod's node is not ready (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhipth committed Oct 5, 2021
1 parent f625e38 commit 145a154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/core/pod_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (r *PodReconciler) Reconcile(request custom.Request) (ctrl.Result, error) {
logger.V(1).Info("pod's node is not managed, skipping pod event")
return ctrl.Result{}, nil
} else if !node.IsReady() {
logger.Info("pod's node is not ready to handle request yet, will retry")
logger.V(1).Info("pod's node is not ready to handle request yet, will retry")
return PodRequeueRequest, nil
}
// Get the aggregate level resource, vpc controller doesn't support allocating
Expand Down

0 comments on commit 145a154

Please sign in to comment.