diff options
| author | Eric Day <eday@oddments.org> | 2010-10-15 20:59:13 +0000 |
|---|---|---|
| committer | Tarmac <> | 2010-10-15 20:59:13 +0000 |
| commit | 3b34b9f64c2f27cdc6203f8d5571246a92aa4386 (patch) | |
| tree | 0982684b5bd7c0de9e00ef2755d81f0303c57be8 /nova/api | |
| parent | d4d8a530036d1530ba5420fb3831bc0705a604e8 (diff) | |
| parent | 7013fb5c8f5883bae46c2407b3a7beb4412081bc (diff) | |
Fix for bug 660818 by adding the resource ID argument.
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/backup_schedules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/backup_schedules.py b/nova/api/openstack/backup_schedules.py index 76ad6ef87..db240c65a 100644 --- a/nova/api/openstack/backup_schedules.py +++ b/nova/api/openstack/backup_schedules.py @@ -34,5 +34,5 @@ class Controller(wsgi.Controller): both create and update through a POST """ return faults.Fault(exc.HTTPNotFound()) - def delete(self, req, server_id): + def delete(self, req, server_id, id): return faults.Fault(exc.HTTPNotFound()) |
