builder/digitalocean: raised state_timeout default to 6 minutes [GH-26]

This commit is contained in:
Jack Pearkes 2013-06-24 09:02:55 +02:00
parent f181e9b6bd
commit 513c8bc4bb
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
if b.config.RawStateTimeout == "" { if b.config.RawStateTimeout == "" {
// Default to 3 minute timeouts waiting for // Default to 3 minute timeouts waiting for
// desired state. i.e waiting for droplet to become active // desired state. i.e waiting for droplet to become active
b.config.RawStateTimeout = "3m" b.config.RawStateTimeout = "6m"
} }
// A list of errors on the configuration // A list of errors on the configuration