Skip to content

Commit bd6e000

Browse files
committed
Fix linter issue
Signed-off-by: Lennart Jern <[email protected]>
1 parent 131de0a commit bd6e000

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/openstackserver_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ func (r *OpenStackServerReconciler) getOrCreateServer(ctx context.Context, logge
451451
msg = infrav1.ServerUnexpectedDeletedMessage
452452
reason = infrav1.InstanceNotFoundReason
453453
}
454-
conditions.MarkFalse(openStackServer, infrav1.InstanceReadyCondition, reason, clusterv1.ConditionSeverityError, msg)
454+
conditions.MarkFalse(openStackServer, infrav1.InstanceReadyCondition, reason, clusterv1.ConditionSeverityError, "%s", msg)
455455
return nil, err
456456
}
457457
}

0 commit comments

Comments
 (0)