Skip to content

Commit 84693ea

Browse files
committed
add wait flag to updateExistingConfigFromFlags
1 parent ee1f8ff commit 84693ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: cmd/minikube/cmd/start_flags.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,10 @@ func updateExistingConfigFromFlags(cmd *cobra.Command, existing *config.ClusterC
469469
existing.KubernetesConfig.EnableDefaultCNI = viper.GetBool(enableDefaultCNI)
470470
}
471471

472-
existing.VerifyComponents = interpretWaitFlag(*cmd)
472+
if cmd.Flags().Changed(waitComponents) {
473+
existing.VerifyComponents = interpretWaitFlag(*cmd)
474+
}
475+
473476
return *existing
474477
}
475478

0 commit comments

Comments
 (0)