Skip to content

Commit e04c85f

Browse files
fix: make Run not to fail if getK8sClientFunc returns an err which is appropriate only for 8.17.x
1 parent 5df9682 commit e04c85f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/pkg/composable/providers/kubernetessecrets/kubernetes_secrets.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (p *contextProviderK8SSecrets) Run(ctx context.Context, comm corecomp.Conte
107107
// signal that the provider has initialized
108108
close(p.running)
109109
p.logger.Debug(k8sSecretsProviderName, " provider skipped, unable to connect: ", err.Error())
110-
return err
110+
return nil
111111
}
112112
p.clientMtx.Lock()
113113
p.client = client

0 commit comments

Comments
 (0)