Comment 1 for bug 1361134

Revision history for this message
YaoZheng_ZTE (zheng-yao1) wrote :

At present, I change the /usr/lib/python2.7/site-packages/glanceclient/openstack/common/strutils.py safe_encode function
and avoid this issue.
e.g:
def safe_encode(text, incoming=None,
                encoding='utf-8', errors='strict'):
=>
def safe_encode(text, incoming=None,
                encoding='utf-8', errors='ignore'):

"errors" from 'strict' to 'ignore'