diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-05-29 09:15:45 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-05-29 09:15:45 +0000 |
| commit | 8a92af1e84ee7d6f623f677263f9fa5b9487253d (patch) | |
| tree | 4fe935504ce2dcf8aa599eb66f4d4bb4684cf45a /nova/api | |
| parent | 64b234d5cb69fbfd183d74f20d7b243569f6c6f6 (diff) | |
| parent | 781815b3b27cc3fcbf153db57deb9bd82ae1d8d3 (diff) | |
| download | nova-8a92af1e84ee7d6f623f677263f9fa5b9487253d.tar.gz nova-8a92af1e84ee7d6f623f677263f9fa5b9487253d.tar.xz nova-8a92af1e84ee7d6f623f677263f9fa5b9487253d.zip | |
Merge "Fixes encoding issues for nova api req body."
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/wsgi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py index 32823ae01..eda82483f 100644 --- a/nova/api/openstack/wsgi.py +++ b/nova/api/openstack/wsgi.py @@ -917,7 +917,8 @@ class Resource(wsgi.Application): if body: msg = _("Action: '%(action)s', body: " - "%(body)s") % {'action': action, 'body': body} + "%(body)s") % {'action': action, + 'body': unicode(body, 'utf-8')} LOG.debug(msg) LOG.debug(_("Calling method %s") % meth) |
