Skip to content

Commit

Permalink
Print warning instead of error in case of unstable cluster
Browse files Browse the repository at this point in the history
- Since the code doesn't exit, the error messaging might be confusing to users
  • Loading branch information
vyasgun authored and praveenkumar committed Oct 8, 2024
1 parent f5cec01 commit ab7c92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/crc/machine/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,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)
Expand Down

0 comments on commit ab7c92f

Please sign in to comment.