remvoe comment

pull/8959/head
Medya Gh 2020-08-11 10:39:00 -07:00
parent 9409158d09
commit 7463eda122
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ var cachedSysInfoErr *error
// CachedDaemonInfo will run and return a docker/podman info only once per minikube run time. to avoid performance
func CachedDaemonInfo(ociBin string) (SysInfo, error) {
if cachedSysInfo == nil { // if cached daemon info has error, try to get a new one
if cachedSysInfo == nil {
si, err := DaemonInfo(ociBin)
cachedSysInfo = &si
cachedSysInfoErr = &err