diff options
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/gce/gce.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/gce/gce.go b/pkg/gce/gce.go index e5194ae00..0ba0c50c0 100644 --- a/pkg/gce/gce.go +++ b/pkg/gce/gce.go @@ -266,8 +266,9 @@ func (err resourcePoolExhaustedError) Error() string { } func (ctx *Context) waitForCompletion(typ, desc, opName string, ignoreNotFound bool) error { + time.Sleep(3 * time.Second) for { - time.Sleep(2 * time.Second) + time.Sleep(3 * time.Second) var op *compute.Operation err := ctx.apiCall(func() (err error) { switch typ { |
