providers/google : google_compute_disk.go : Minor correction : "Deleting disk" message in Delete method (#12521)

* WIP: added a new resource type : google_compute_snapshot

* [WIP]: added a test acceptance for google_compute_snapshot

* Cleanup

* Minor correction : "Deleting disk" message in Delete method

* Error in merge action

* Error in merge action
This commit is contained in:
tpoindessous 2017-03-08 16:34:49 +01:00 committed by Paul Stack
parent b3ff5423da
commit 9a2e9914de
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ func resourceComputeDiskDelete(d *schema.ResourceData, meta interface{}) error {
}
zone := d.Get("zone").(string)
err = computeOperationWaitZone(config, op, project, zone, "Creating Disk")
err = computeOperationWaitZone(config, op, project, zone, "Deleting Disk")
if err != nil {
return err
}