Skip to content

Commit 9f78ee5

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request kubernetes#56409 from porridge/trim-trailing-newline
Automatic merge from submit-queue (batch tested with PRs 56161, 56324, 55685, 56409, 55296). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Do not log trailing whitespace. **What this PR does / why we need it**: Gets rid of useless spaces, makes log parser verification slightly easier. **Release note**: ```release-note NONE ```
2 parents 0213f10 + f9ff53d commit 9f78ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/registry/rbac/rest/storage_rbac.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ func (p *PolicyData) EnsureRBACPolicy() genericapiserver.PostStartHookFunc {
264264
case result.Operation == reconciliation.ReconcileUpdate:
265265
glog.Infof("updated role.%s/%s in %v with additional permissions: %v", rbac.GroupName, role.Name, namespace, result.MissingRules)
266266
case result.Operation == reconciliation.ReconcileCreate:
267-
glog.Infof("created role.%s/%s in %v ", rbac.GroupName, role.Name, namespace)
267+
glog.Infof("created role.%s/%s in %v", rbac.GroupName, role.Name, namespace)
268268
}
269269
return nil
270270
})

0 commit comments

Comments
 (0)