From 6507943d8d07a10dce94ab684bacb62b144c37a8 Mon Sep 17 00:00:00 2001 From: nithyatsu Date: Wed, 13 Sep 2023 13:31:41 -0700 Subject: [PATCH] fix --- pkg/server/asyncworker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/server/asyncworker.go b/pkg/server/asyncworker.go index 15dfb3850d..8c999d995c 100644 --- a/pkg/server/asyncworker.go +++ b/pkg/server/asyncworker.go @@ -63,7 +63,7 @@ func (w *AsyncWorker) Run(ctx context.Context) error { return fmt.Errorf("failed to initialize kubernetes clients: %w", err) } - appModel, err := model.NewApplicationModel(w.Options.Arm, k8s.RuntimeClient, k8s.ClientSet, k8s.DiscoveryClient, k8s.DynamicClient) + appModel, err := model.NewApplicationModel(w.Options.Arm, k8s.RuntimeClient, k8s.ClientSet, k8s.DiscoveryClient) if err != nil { return fmt.Errorf("failed to initialize application model: %w", err) }