Skip to content

Commit

Permalink
Remove startup error message on older version of ISO, sent to log ins…
Browse files Browse the repository at this point in the history
…tead
  • Loading branch information
ckannon committed Nov 17, 2022
1 parent 3198d10 commit c4c05a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func provisionWithDriver(cmd *cobra.Command, ds registry.DriverState, existing *
func validateBuiltImageVersion(r command.Runner) {
res, err := r.RunCmd(exec.Command("cat", "/version.json"))
if err != nil {
out.WarningT("Unable to open version.json: {{.error}}", out.V{"error": err})
klog.Warningf("Unable to open version.json: %s", err)
return
}

Expand Down

0 comments on commit c4c05a7

Please sign in to comment.