Fix bootstrap status check timeout

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan 2021-02-11 13:09:16 +02:00
parent 24fe74f2f6
commit 1256bbfbaf
No known key found for this signature in database
GPG key ID: 3299AEB0E4085BAF

View file

@ -162,7 +162,7 @@ func applyInstallManifests(ctx context.Context, manifestPath string, components
return fmt.Errorf("install failed")
}
statusChecker, err := NewStatusChecker(time.Second, time.Minute)
statusChecker, err := NewStatusChecker(time.Second, rootArgs.timeout)
if err != nil {
return fmt.Errorf("install failed: %w", err)
}