summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorEric Day <eday@oddments.org>2010-10-14 15:09:18 -0700
committerEric Day <eday@oddments.org>2010-10-14 15:09:18 -0700
commit7013fb5c8f5883bae46c2407b3a7beb4412081bc (patch)
treeac2fbe8f629f06c3bc53c0ada593f70e53de3dba /nova/api
parentaec330b34def7158f590ce855d0cd4ff5d0ed41c (diff)
Fix for bug#660818, allows tests to pass since delete expects a resource ID.
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/backup_schedules.py2
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())