Do not try to import simplejson in jsonfile.py (#40983)

With the addition on ajson.py in cbb6a7f4e8, two
new classes were created: AnsibleJSONDecoder and AnsibleJSONEncoder. These
classes are used when calling json.looads() and json.dumps().

This works fine with everything except the jsonfile.py cache plugin, which would
first try to import simplejson as json, then fall back to json. When simplejson
is installed, the load() or dump methods from simplejson are called, which then
try to use the AnsibleJSONEncoder/AnsibleJSONDecoder subclass from ajson.py.
But asjon.py imports json, not simplejson, and things blow up.

(cherry picked from commit 479b26fe31)
This commit is contained in:
Sam Doran 2018-06-01 14:24:57 -04:00 committed by Matt Clay
parent 08aeeefa90
commit 8d345c7cd6

View file

@ -43,11 +43,7 @@ DOCUMENTATION = '''
'''
import codecs
try:
import simplejson as json
except ImportError:
import json
import json
from ansible.parsing.ajson import AnsibleJSONEncoder, AnsibleJSONDecoder
from ansible.plugins.cache import BaseFileCacheModule