mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
py3: send Decimal number as string instead of base64 encoded value
for Decimal only from client to server direction uses __base64__ notation. Server replies with pure string for Decimal data, and also server is able to parse string and create decimal values where needed. without this we need ugly py3 code: - return {'__base64__': base64.b64encode(str(val))} + return {'__base64__': base64.b64encode( + str(val).encode('ascii')).decode('ascii')} https://fedorahosted.org/freeipa/ticket/4985 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
parent
ab53d80883
commit
4c84341b8b
@ -308,7 +308,7 @@ def json_encode_binary(val, version):
|
||||
encoded = encoded.decode('ascii')
|
||||
return {'__base64__': encoded}
|
||||
elif isinstance(val, Decimal):
|
||||
return {'__base64__': base64.b64encode(str(val))}
|
||||
return unicode(val)
|
||||
elif isinstance(val, DN):
|
||||
return str(val)
|
||||
elif isinstance(val, datetime.datetime):
|
||||
|
Loading…
Reference in New Issue
Block a user