mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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:
parent
12df9f2e31
commit
0250beb68a
1 changed files with 0 additions and 1 deletions
|
@ -174,7 +174,6 @@ class Connection(ConnectionBase):
|
||||||
key_filename=key_filename,
|
key_filename=key_filename,
|
||||||
password=self._play_context.password,
|
password=self._play_context.password,
|
||||||
timeout=self._play_context.timeout,
|
timeout=self._play_context.timeout,
|
||||||
compress=True,
|
|
||||||
port=port,
|
port=port,
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
Loading…
Reference in a new issue