|
|
|
|
@ -157,3 +157,53 @@ func waitForActionState(
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// waitForImageState simply blocks until the image action is in
|
|
|
|
|
// a state we expect, while eventually timing out.
|
|
|
|
|
func waitForImageState(
|
|
|
|
|
desiredState string, imageId, actionId int,
|
|
|
|
|
client *godo.Client, timeout time.Duration) error {
|
|
|
|
|
done := make(chan struct{})
|
|
|
|
|
defer close(done)
|
|
|
|
|
|
|
|
|
|
result := make(chan error, 1)
|
|
|
|
|
go func() {
|
|
|
|
|
attempts := 0
|
|
|
|
|
for {
|
|
|
|
|
attempts += 1
|
|
|
|
|
|
|
|
|
|
log.Printf("Checking action status... (attempt: %d)", attempts)
|
|
|
|
|
action, _, err := client.ImageActions.Get(context.TODO(), imageId, actionId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
result <- err
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if action.Status == desiredState {
|
|
|
|
|
result <- nil
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Wait 3 seconds in between
|
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
|
|
|
|
|
// Verify we shouldn't exit
|
|
|
|
|
select {
|
|
|
|
|
case <-done:
|
|
|
|
|
// We finished, so just exit the goroutine
|
|
|
|
|
return
|
|
|
|
|
default:
|
|
|
|
|
// Keep going
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
log.Printf("Waiting for up to %d seconds for image transter 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)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|