Merge "Fix the evacuate API without json-schema validation in 2.13"

This commit is contained in:
Jenkins 2017-04-18 16:23:02 +00:00 committed by Gerrit Code Review
commit 4b37c38eaa
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class EvacuateController(wsgi.Controller):
# backwards compatibility reasons.
@extensions.expected_errors((400, 404, 409))
@wsgi.action('evacuate')
@validation.schema(evacuate.evacuate, "2.1", "2.12")
@validation.schema(evacuate.evacuate, "2.1", "2.13")
@validation.schema(evacuate.evacuate_v214, "2.14", "2.28")
@validation.schema(evacuate.evacuate_v2_29, "2.29")
def _evacuate(self, req, id, body):