Fix another bytes issue (#32951)

If results are bytestrings, they need to be cast to text before hitting
json.loads()
This commit is contained in:
Nathaniel Case 2017-11-16 13:05:24 -05:00 committed by GitHub
parent c1c0ad5d69
commit 4f38c1fea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@ import traceback
from ansible import constants as C
from ansible.module_utils._text import to_text
from ansible.module_utils.six import binary_type
try:
@ -83,6 +84,8 @@ class JsonRpcServer(object):
def response(self, result=None):
response = self.header()
if isinstance(result, binary_type):
result = to_text(result)
response['result'] = result
return response