From 65d4041f31589d077638514a39aeeb0641cc0b8f Mon Sep 17 00:00:00 2001 From: vyasgun Date: Mon, 12 Aug 2024 16:24:34 +0530 Subject: [PATCH] Print warning instead of error in case of unstable cluster - Since the code doesn't exit, the error messaging might be confusing to users --- pkg/crc/machine/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/crc/machine/start.go b/pkg/crc/machine/start.go index e0cb87deb8..7cdc26da36 100644 --- a/pkg/crc/machine/start.go +++ b/pkg/crc/machine/start.go @@ -608,7 +608,7 @@ func (client *client) Start(ctx context.Context, startConfig types.StartConfig) logging.Infof("Starting %s instance... [waiting for the cluster to stabilize]", startConfig.Preset) if err := cluster.WaitForClusterStable(ctx, instanceIP, constants.KubeconfigFilePath, proxyConfig); err != nil { - logging.Errorf("Cluster is not ready: %v", err) + logging.Warnf("Cluster is not ready: %v", err) } waitForProxyPropagation(ctx, ocConfig, proxyConfig)