Log the latest error on timeout

This commit is contained in:
Mikalai Radchuk 2019-11-14 17:46:38 +00:00
Родитель 5bc690af0e
Коммит a72c7d5986
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -742,7 +742,7 @@ func (i *Installer) installResources(ctx context.Context, doc *api.OpenShiftClus
}
if time.Now().Sub(now) > 30*time.Minute {
return fmt.Errorf("timed out waiting for bootstrap configmap")
return fmt.Errorf("timed out waiting for bootstrap configmap. Last error: %v", err)
}
<-t.C