Skip to content

Commit

Permalink
Merge pull request #588 from shellyyang1989/log
Browse files Browse the repository at this point in the history
Bug 1879184: Fixing the log message in rbac.go for clusterrole
  • Loading branch information
openshift-merge-robot committed Jun 10, 2021
2 parents 4a26c3d + d764802 commit ea6e779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resourceapply/rbac.go
Expand Up @@ -61,7 +61,7 @@ func ApplyClusterRolev1(ctx context.Context, client rbacclientv1.ClusterRolesGet
if !*modified {
return existing, false, nil
}
klog.V(2).Infof("Updating ClusterRole %s/%s due to diff: %v", required.Name, diff.ObjectDiff(existing, required))
klog.V(2).Infof("Updating ClusterRole %s due to diff: %v", required.Name, diff.ObjectDiff(existing, required))

actual, err := client.ClusterRoles().Update(ctx, existing, metav1.UpdateOptions{})
return actual, true, err
Expand Down

0 comments on commit ea6e779

Please sign in to comment.