Merge "Fix response body format of orchestration_client to dict"

This commit is contained in:
Jenkins 2014-09-08 04:40:30 +00:00 committed by Gerrit Code Review
commit d93812494a
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ class OrchestrationClient(rest_client.RestClient):
uri = 'stacks'
resp, body = self.post(uri, headers=headers, body=body)
self.expected_success(201, resp.status)
body = json.loads(body)
return resp, body
def update_stack(self, stack_identifier, name, disable_rollback=True,