spelling: transfer

This commit is contained in:
Josh Soref 2018-03-14 03:25:35 +00:00
parent bf3bf79b81
commit 3b694feabc
1 changed files with 2 additions and 2 deletions

View File

@ -198,12 +198,12 @@ func waitForImageState(
}
}()
log.Printf("Waiting for up to %d seconds for image transter to become %s", timeout/time.Second, desiredState)
log.Printf("Waiting for up to %d seconds for image transfer to become %s", timeout/time.Second, desiredState)
select {
case err := <-result:
return err
case <-time.After(timeout):
err := fmt.Errorf("Timeout while waiting to for image transter to become '%s'", desiredState)
err := fmt.Errorf("Timeout while waiting to for image transfer to become '%s'", desiredState)
return err
}
}