Fix for callback plugins on Python3 when a module returns dictionary keys that aren't strings

This fixes one of the problems reported in https://github.com/ansible/ansible/issues/49343

Upstream Python3 bug for the json traceback:
https://bugs.python.org/issue25457

and PR that may fix it:
https://github.com/python/cpython/pull/8011
This commit is contained in:
Toshio Kuratomi 2018-12-04 14:42:24 -08:00
commit c817bef3ae
3 changed files with 50 additions and 12 deletions

View file

@ -0,0 +1,4 @@
---
bugfixes:
- Fix for callback plugins on Python3 when a module returns non-string field
names in its results. (https://github.com/ansible/ansible/issues/49343)