Are you able to test whether that fixes your issue? Are you able to pull from epel-testing into your production environment? I could talk to the epel maintainer about pulling that patch into the epel package which may help you out. But there have been some other issues opened with similar symptoms that haven't been fixed by that patch so I'd like to confirm that this would fix your issue first.
-Toshio
--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/e208321e-cc7c-4b76-850b-4865d6f8d985%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
def to_json(a, *args, **kw): ''' Convert the value to JSON ''' return json.dumps(a, *args, **kw) def to_nice_json(a, *args, **kw): '''Make verbose, human readable JSON''' return json.dumps(a, indent=4, sort_keys=True, *args, **kw)It does look like it uses a different encoder under the hood if indent & sorting is enabled