remove extra space in log

This commit is contained in:
Paco Xu 2024-01-29 16:03:58 +08:00
parent eb0fcf9e21
commit 8bc63027d9

View File

@ -694,7 +694,7 @@ func EnsureAdminClusterRoleBindingImpl(ctx context.Context, adminClient, superAd
); err != nil {
lastError = err
if apierrors.IsAlreadyExists(err) {
klog.V(5).Infof("ClusterRoleBinding %s already exists.", kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding)
klog.V(5).Infof("ClusterRoleBinding %s already exists.", kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding)
return true, nil
}
// Retry on any other type of error.