mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Create custom JSONEncoder to stringify Exceptions
This commit is contained in:
parent
274016101f
commit
958ce4a252
1 changed files with 9 additions and 2 deletions
|
@ -69,6 +69,14 @@ BLACKLIST_IMPORTS = {
|
|||
}
|
||||
|
||||
|
||||
class ReporterEncoder(json.JSONEncoder):
|
||||
def default(self, o):
|
||||
if isinstance(o, Exception):
|
||||
return str(o)
|
||||
|
||||
return json.JSONEncoder.default(self, o)
|
||||
|
||||
|
||||
class Reporter(object):
|
||||
@staticmethod
|
||||
@contextmanager
|
||||
|
@ -135,7 +143,7 @@ class Reporter(object):
|
|||
ret = [len(r['errors']) for _, r in reports.items()]
|
||||
|
||||
with Reporter._output_handle(output) as handle:
|
||||
print(json.dumps(Reporter._filter_out_ok(reports), indent=4), file=handle)
|
||||
print(json.dumps(Reporter._filter_out_ok(reports), indent=4, cls=ReporterEncoder), file=handle)
|
||||
|
||||
return 3 if sum(ret) else 0
|
||||
|
||||
|
@ -505,7 +513,6 @@ class ModuleValidator(Validator):
|
|||
else:
|
||||
self.warnings.append(msg)
|
||||
|
||||
|
||||
def _find_ps_replacers(self):
|
||||
if 'WANT_JSON' not in self.text:
|
||||
self.errors.append((206, 'WANT_JSON not found in module'))
|
||||
|
|
Loading…
Reference in a new issue