First pass at feature parity. Includes Image ID hash
This commit is contained in:
@@ -15,7 +15,9 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
import logging
|
||||
import time
|
||||
|
||||
from webob import exc
|
||||
|
||||
from nova import wsgi
|
||||
@@ -46,8 +48,8 @@ class Controller(wsgi.Controller):
|
||||
def create(self, req, server_id):
|
||||
""" No actual update method required, since the existing API allows
|
||||
both create and update through a POST """
|
||||
return faults.Fault(exc.HTTPNotFound())
|
||||
return faults.Fault(exc.HTTPNotImplemented())
|
||||
|
||||
def delete(self, req, server_id, id):
|
||||
""" Deletes an existing backup schedule """
|
||||
return faults.Fault(exc.HTTPNotFound())
|
||||
return faults.Fault(exc.HTTPNotImplemented())
|
||||
|
Reference in New Issue
Block a user