mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-26 16:16:31 -06:00
py3: fix schema response for py2 server with py3 client
The schema RPC response can include a bytes value for the 'topic_topic' field (when the server is running in Python 2). In this case, a Python 3 client fails to initialise the API when a schema fetch is required, because it cannot serialise the bytes values in the schema object to JSON. Ensure the 'topic_topic' value is unicode. Part of: https://pagure.io/freeipa/issue/4985 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
This commit is contained in:
parent
2bc5b7f044
commit
b1e1109679
@ -399,8 +399,8 @@ class topic_(MetaObject):
|
||||
continue
|
||||
if topic_value is not None:
|
||||
topic_name = unicode(topic_value)
|
||||
topic['topic_topic'] = '{}/{}'.format(topic_name,
|
||||
topic_version)
|
||||
topic['topic_topic'] = u'{}/{}'.format(topic_name,
|
||||
topic_version)
|
||||
else:
|
||||
topic.pop('topic_topic', None)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user