~wallyworld/gwacl/fix-request-eof

« back to all changes in this revision

Viewing changes to management.go

  • Committer: Tarmac
  • Author(s): Andrew Wilkins
  • Date: 2013-08-28 02:01:24 UTC
  • mfrom: (220.1.1 gwacl)
  • Revision ID: tarmac-20130828020124-bnw8c48kcnor402s
Tags: juju-1.14.0, juju-1.14.1
[r=julian-edwards][bug=1216744][author=axwalk] Delete OS disk blobs in DestroyDeployment

Fixes bug #1216744

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
    for _, diskName := range diskNames {
161
161
        err = api.DeleteDisk(&DeleteDiskRequest{
162
162
            DiskName:   diskName,
163
 
            DeleteBlob: false}) // change to true at some point?
 
163
            DeleteBlob: true})
164
164
        if err != nil && !IsNotFoundError(err) {
165
165
            return err
166
166
        }