2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-03-28 21:23:28 +00:00

Dump stderr to client if ansible had an utterly disastrous condition

This commit is contained in:
Jarrod Johnson
2024-03-06 08:45:23 -05:00
parent 0a8ec96cdf
commit 3d33e33ea2

View File

@@ -63,6 +63,9 @@ class PlayRunner(object):
else:
textout += result['state'] + '\n'
textout += '\n'
if self.stderr:
textout += "ERRORS **********************************\n"
textout += self.stderr
return textout
def dump_json(self):