Skip to content

Commit

Permalink
increase timeout for deleting networks (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
danawillow authored Nov 3, 2017
1 parent 7507a29 commit 0668525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/resource_compute_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func resourceComputeNetworkDelete(d *schema.ResourceData, meta interface{}) erro
return fmt.Errorf("Error deleting network: %s", err)
}

err = computeOperationWait(config.clientCompute, op, project, "Deleting Network")
err = computeOperationWaitTime(config.clientCompute, op, project, "Deleting Network", 10)
if err != nil {
return err
}
Expand Down

0 comments on commit 0668525

Please sign in to comment.