Skip to content

Commit

Permalink
logging spell fixes (#47450)
Browse files Browse the repository at this point in the history
* logging spell fixes

* remove space in log message

Co-authored-by: rosstimothy <[email protected]>

---------

Co-authored-by: rosstimothy <[email protected]>
  • Loading branch information
stevenGravy and rosstimothy authored Oct 10, 2024
1 parent b176618 commit 7c364ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.assets/tooling/cmd/render-helm-ref/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func main() {

reference, err := parseAndRender(chartPath)
if err != nil {
log.Errorf("failed parsing chart and rendering refence: %s", err)
log.Errorf("failed parsing chart and rendering reference: %s", err)
os.Exit(1)
}

Expand Down
2 changes: 1 addition & 1 deletion integrations/operator/controllers/resources/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func SetupAllControllers(log logr.Logger, mgr manager.Manager, teleportClient *c
reconcilers = append(reconcilers, reconcilerFactory{"TeleportAccessList", NewAccessListReconciler})
reconcilers = append(reconcilers, reconcilerFactory{"TeleportOktaImportRule", NewOktaImportRuleReconciler})
} else {
log.Info("The cluster license does not contain advanced workflows. TeleportAccessList, TeleportOktaImportRule resourcess won't be reconciled")
log.Info("The cluster license does not contain advanced workflows. TeleportAccessList, TeleportOktaImportRule resources won't be reconciled")
}

kubeClient := mgr.GetClient()
Expand Down

0 comments on commit 7c364ae

Please sign in to comment.