blob: 494a0e4dc4e4475e8b005e2064348e7b4212a6dd [file] [log] [blame]
Ash Wilson93757df2014-10-21 09:36:27 -04001package servers
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
Ash Wilson93757df2014-10-21 09:36:27 -04004
5// WaitForStatus will continually poll a server until it successfully transitions to a specified
6// status. It will do this for at most the number of seconds specified.
7func WaitForStatus(c *gophercloud.ServiceClient, id, status string, secs int) error {
8 return gophercloud.WaitFor(secs, func() (bool, error) {
9 current, err := Get(c, id).Extract()
10 if err != nil {
11 return false, err
12 }
13
14 if current.Status == status {
15 return true, nil
16 }
17
18 return false, nil
19 })
20}