Remove compress option from paramiko connection for now

It's not available on older versions of paramiko such as shipped in RHEL6
This commit is contained in:
Toshio Kuratomi 2015-09-24 13:18:00 -07:00
parent 12df9f2e31
commit 0250beb68a

View file

@ -174,7 +174,6 @@ class Connection(ConnectionBase):
key_filename=key_filename,
password=self._play_context.password,
timeout=self._play_context.timeout,
compress=True,
port=port,
)
except Exception as e: