diff options
| author | vladimir.p <vladimir@zadarastorage.com> | 2011-07-22 20:25:32 -0700 |
|---|---|---|
| committer | vladimir.p <vladimir@zadarastorage.com> | 2011-07-22 20:25:32 -0700 |
| commit | 61781dae931ced36db0f2735da474d0bd38a53cf (patch) | |
| tree | 55d9c7d9556a810f31ae583de2a3a0e8fc153873 /nova/api | |
| parent | a4f1ac011cdb086bf77ba3d2e14b9a34001cc8a7 (diff) | |
more unittest changes
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/contrib/virtual_storage_arrays.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/api/openstack/contrib/virtual_storage_arrays.py b/nova/api/openstack/contrib/virtual_storage_arrays.py index 3c1362f0c..6139b494e 100644 --- a/nova/api/openstack/contrib/virtual_storage_arrays.py +++ b/nova/api/openstack/contrib/virtual_storage_arrays.py @@ -353,6 +353,10 @@ class VsaDriveController(VsaVolumeDriveController): """Update a drive. Should be done through VSA APIs""" return faults.Fault(exc.HTTPBadRequest()) + def delete(self, req, vsa_id, id): + """Delete a volume. Should be done through VSA APIs""" + return faults.Fault(exc.HTTPBadRequest()) + class VsaVPoolController(object): """The vPool VSA API controller for the OpenStack API.""" |
