Skip to content

Commit d29c5fe

Browse files
Fix type in main.go
Co-authored-by: Antonin Stefanutti <astefanutti@users.noreply.github.com>
1 parent 58dcfd0 commit d29c5fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func main() {
200200
v1, err1 := HasAPIResourceForGVK(kubeClient.DiscoveryClient, kueue.GroupVersion.WithKind("Workload"))
201201
v2, err2 := HasAPIResourceForGVK(kubeClient.DiscoveryClient, mcadv1beta2.GroupVersion.WithKind("AppWrapper"))
202202
if v1 && v2 && *cfg.AppWrapper.Enabled {
203-
// Ascynchronous because controllers need to wait for certificate to be ready for webhooks to work
203+
// Asynchronous because controllers need to wait for certificate to be ready for webhooks to work
204204
go awctrl.SetupControllers(ctx, mgr, cfg.AppWrapper.Config, certsReady, setupLog)
205205
exitOnError(awctrl.SetupIndexers(ctx, mgr, cfg.AppWrapper.Config), "unable to setup indexers")
206206
} else if err1 != nil || err2 != nil {

0 commit comments

Comments
 (0)