diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-06-10 20:15:01 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-06-10 20:15:01 +0000 |
| commit | bfb1c0af2ecb7704f414c84324921b875674fa2c (patch) | |
| tree | 52daaf9a5ffb5c3e45c38abae84d4953b1c96ffd /nova | |
| parent | 1fea9a2f03aad246d7daf6f1e1390e771138fe2d (diff) | |
| parent | 30062970e70adae61b12eb64f59c62b80e533f9f (diff) | |
Merge "Resolve unittest error in rpc/impl_zmq"
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/rpc/impl_zmq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc/impl_zmq.py b/nova/rpc/impl_zmq.py index a286394e2..35ae0094c 100644 --- a/nova/rpc/impl_zmq.py +++ b/nova/rpc/impl_zmq.py @@ -74,7 +74,7 @@ def _serialize(data): Error if a developer passes us bad data. """ try: - return str(jsonutils.dumps(data, ensure_ascii=True)) + return str(jsonutils.dumps(data)) except TypeError: LOG.error(_("JSON serialization failed.")) raise |
