summaryrefslogtreecommitdiff
path: root/lib/ansible/cli/scripts
diff options
context:
space:
mode:
authorDaniel Mellado <dmellado@redhat.com>2020-04-27 11:58:57 +0200
committerGitHub <noreply@github.com>2020-04-27 11:58:57 +0200
commit9217aeeac1fadbbfd89714cb987bba08e2f41003 (patch)
tree9042db2055463df63094df7e78fc14bf66a78e2f /lib/ansible/cli/scripts
parent91d02e1c1fb16ac0fbb079334f9d3c239e57034a (diff)
downloadansible-9217aeeac1fadbbfd89714cb987bba08e2f41003.tar.gz
Revert "Fix missing persistent connection messages (#68496)" (#69147)
This reverts commit 5f6427b1fc7449a5c42212013d3f628665701c3d. as it breaks netconf connection. This will be a temporary measure for unlocking CI until a proper fix is shipped.
Diffstat (limited to 'lib/ansible/cli/scripts')
-rwxr-xr-xlib/ansible/cli/scripts/ansible_connection_cli_stub.py24
1 files changed, 3 insertions, 21 deletions
diff --git a/lib/ansible/cli/scripts/ansible_connection_cli_stub.py b/lib/ansible/cli/scripts/ansible_connection_cli_stub.py
index f58ac15d12..d701f15696 100755
--- a/lib/ansible/cli/scripts/ansible_connection_cli_stub.py
+++ b/lib/ansible/cli/scripts/ansible_connection_cli_stub.py
@@ -148,8 +148,6 @@ class ConnectionProcess(object):
resp = self.srv.handle_request(data)
signal.alarm(0)
- display_messages(self.connection)
-
if log_messages:
display.display("jsonrpc response: %s" % resp, log_only=True)
@@ -199,7 +197,9 @@ class ConnectionProcess(object):
self.sock.close()
if self.connection:
self.connection.close()
- display_messages(self.connection)
+ if self.connection.get_option("persistent_log_messages"):
+ for _level, message in self.connection.pop_messages():
+ display.display(message, log_only=True)
except Exception:
pass
finally:
@@ -337,24 +337,6 @@ def main():
sys.exit(rc)
-def display_messages(connection):
- # This should be handled elsewhere, but if this is the last task, nothing will
- # come back to collect the messages. So now each task will dump its own messages
- # to stdout before logging the response message. This may make some other
- # pop_messages calls redundant.
- for level, message in connection.pop_messages():
- if connection.get_option('persistent_log_messages') and level == "log":
- display.display(message, log_only=True)
- else:
- # These should be keyed by valid method names, but
- # fail gracefully just in case.
- display_method = getattr(display, level, None)
- if display_method:
- display_method(message)
- else:
- display.display((level, message))
-
-
if __name__ == '__main__':
display = Display()
main()