Skip to content
Snippets Groups Projects
Unverified Commit 09672196 authored by openshift-merge-bot[bot]'s avatar openshift-merge-bot[bot] Committed by GitHub
Browse files

Merge pull request #1282 from openshift-cherrypick-robot/cherry-pick-1278-to-release-4.16

[release-4.16] OCPBUGS-39028: Updates message verbs to use %q where appropriate
parents 7d6867c5 da815b61
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ ...@@ -161,7 +161,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ
// Implement controller logic here // Implement controller logic here
machineName := m.GetName() machineName := m.GetName()
klog.Infof("%v: reconciling Machine", machineName) klog.Infof("%q: reconciling Machine", machineName)
// Get the original state of conditions now so that they can be used to calculate the patch later. // Get the original state of conditions now so that they can be used to calculate the patch later.
// This must be a copy otherwise the referenced slice will be modified by later machine conditions changes. // This must be a copy otherwise the referenced slice will be modified by later machine conditions changes.
...@@ -229,14 +229,14 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ ...@@ -229,14 +229,14 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ
// we can loose instances, e.g. right after request to create one // we can loose instances, e.g. right after request to create one
// was sent and before a list of node addresses was set. // was sent and before a list of node addresses was set.
if len(m.Status.Addresses) > 0 || !isInvalidMachineConfigurationError(err) { if len(m.Status.Addresses) > 0 || !isInvalidMachineConfigurationError(err) {
klog.Errorf("%v: failed to delete machine: %v", machineName, err) klog.Errorf("%q: failed to delete machine: %v", machineName, err)
return delayIfRequeueAfterError(err) return delayIfRequeueAfterError(err)
} }
} }
instanceExists, err := r.actuator.Exists(ctx, m) instanceExists, err := r.actuator.Exists(ctx, m)
if err != nil { if err != nil {
klog.Errorf("%v: failed to check if machine exists: %v", machineName, err) klog.Errorf("%q: failed to check if machine exists: %v", machineName, err)
return reconcile.Result{}, err return reconcile.Result{}, err
} }
...@@ -271,7 +271,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ ...@@ -271,7 +271,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ
instanceExists, err := r.actuator.Exists(ctx, m) instanceExists, err := r.actuator.Exists(ctx, m)
if err != nil { if err != nil {
klog.Errorf("%v: failed to check if machine exists: %v", machineName, err) klog.Errorf("%q: failed to check if machine exists: %v", machineName, err)
conditions.Set(m, conditions.UnknownCondition( conditions.Set(m, conditions.UnknownCondition(
machinev1.InstanceExistsCondition, machinev1.InstanceExistsCondition,
...@@ -289,7 +289,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ ...@@ -289,7 +289,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ
if instanceExists { if instanceExists {
klog.Infof("%v: reconciling machine triggers idempotent update", machineName) klog.Infof("%v: reconciling machine triggers idempotent update", machineName)
if err := r.actuator.Update(ctx, m); err != nil { if err := r.actuator.Update(ctx, m); err != nil {
klog.Errorf("%v: error updating machine: %v, retrying in %v seconds", machineName, err, requeueAfter) klog.Errorf("%q: error updating machine: %v, retrying in %s seconds", machineName, err, requeueAfter.String())
if patchErr := r.updateStatus(ctx, m, ptr.Deref(m.Status.Phase, ""), nil, originalConditions); patchErr != nil { if patchErr := r.updateStatus(ctx, m, ptr.Deref(m.Status.Phase, ""), nil, originalConditions); patchErr != nil {
klog.Errorf("%v: error patching status: %v", machineName, patchErr) klog.Errorf("%v: error patching status: %v", machineName, patchErr)
...@@ -356,7 +356,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ ...@@ -356,7 +356,7 @@ func (r *ReconcileMachine) Reconcile(ctx context.Context, request reconcile.Requ
klog.Infof("%v: reconciling machine triggers idempotent create", machineName) klog.Infof("%v: reconciling machine triggers idempotent create", machineName)
if err := r.actuator.Create(ctx, m); err != nil { if err := r.actuator.Create(ctx, m); err != nil {
klog.Warningf("%v: failed to create machine: %v", machineName, err) klog.Warningf("%q: failed to create machine: %v", machineName, err)
if isInvalidMachineConfigurationError(err) { if isInvalidMachineConfigurationError(err) {
if err := r.updateStatus(ctx, m, machinev1.PhaseFailed, err, originalConditions); err != nil { if err := r.updateStatus(ctx, m, machinev1.PhaseFailed, err, originalConditions); err != nil {
return reconcile.Result{}, err return reconcile.Result{}, err
......
...@@ -60,7 +60,7 @@ func NewActuator(params ActuatorParams) *Actuator { ...@@ -60,7 +60,7 @@ func NewActuator(params ActuatorParams) *Actuator {
// Set corresponding event based on error. It also returns the original error // Set corresponding event based on error. It also returns the original error
// for convenience, so callers can do "return handleMachineError(...)". // for convenience, so callers can do "return handleMachineError(...)".
func (a *Actuator) handleMachineError(machine *machinev1.Machine, err error, eventAction string) error { func (a *Actuator) handleMachineError(machine *machinev1.Machine, err error, eventAction string) error {
klog.Errorf("%v error: %v", machine.GetName(), err) klog.Errorf("%q error: %v", machine.GetName(), err)
if eventAction != noEventAction { if eventAction != noEventAction {
a.eventRecorder.Eventf(machine, corev1.EventTypeWarning, "Failed"+eventAction, "%v", err) a.eventRecorder.Eventf(machine, corev1.EventTypeWarning, "Failed"+eventAction, "%v", err)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment