summaryrefslogtreecommitdiff
path: root/bin/ansible-connection
diff options
context:
space:
mode:
authorPeter Sprygada <privateip@users.noreply.github.com>2017-02-17 07:13:39 -0500
committerGitHub <noreply@github.com>2017-02-17 07:13:39 -0500
commiteaba067de9a51bba986f4d53d635b20455e9ccc0 (patch)
tree5765c986f2df98713e71d6f9d2945cff1439662e /bin/ansible-connection
parentb0abbb5f8b8707e4b8e44c7f318bac5e1eee5e96 (diff)
downloadansible-eaba067de9a51bba986f4d53d635b20455e9ccc0.tar.gz
fixes type that prevents socket clean up from being called (#21568)
Diffstat (limited to 'bin/ansible-connection')
-rwxr-xr-xbin/ansible-connection2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection
index aa74919c5e..8a4c762ef3 100755
--- a/bin/ansible-connection
+++ b/bin/ansible-connection
@@ -222,7 +222,7 @@ class Server():
# the socket file so it can be recreated
end_time = datetime.datetime.now()
delta = end_time - self._start_time
- dsplay.v('shutting down connection, connection was active for %s secs' % delta, self.play_context.remote_addr)
+ display.v('shutting down connection, connection was active for %s secs' % delta, self.play_context.remote_addr)
try:
self.conn.close()
self.socket.close()