Merge "Fix log traces induced by retry decorator"

This commit is contained in:
Jenkins 2015-07-02 01:43:53 +00:00 committed by Gerrit Code Review
commit f9787afc34
1 changed files with 2 additions and 1 deletions

View File

@ -391,7 +391,8 @@ class Controller(object):
self._notifier.info(request.context,
self._resource + '.create.start',
body)
body = Controller.prepare_request_body(request.context, body, True,
body = Controller.prepare_request_body(request.context,
copy.deepcopy(body), True,
self._resource, self._attr_info,
allow_bulk=self._allow_bulk)
action = self._plugin_handlers[self.CREATE]