Do not try to import simplejson in jsonfile.py (#40983)
With the addition on ajson.py incbb6a7f4e8
, 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 commit479b26fe31
)
This commit is contained in:
parent
08aeeefa90
commit
8d345c7cd6
1 changed files with 1 additions and 5 deletions
6
lib/ansible/plugins/cache/jsonfile.py
vendored
6
lib/ansible/plugins/cache/jsonfile.py
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue