From 7013fb5c8f5883bae46c2407b3a7beb4412081bc Mon Sep 17 00:00:00 2001 From: Eric Day Date: Thu, 14 Oct 2010 15:09:18 -0700 Subject: Fix for bug#660818, allows tests to pass since delete expects a resource ID. --- nova/api/openstack/backup_schedules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/api') 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()) -- cgit