mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Avoid exposing pipelining support for podman connections
Fixes: https://github.com/ansible-community/molecule-podman/issues/2
This commit is contained in:
parent
9ff36649ab
commit
ae14d5662c
1 changed files with 3 additions and 1 deletions
|
|
@ -79,7 +79,9 @@ class Connection(ConnectionBase):
|
|||
|
||||
# String used to identify this Connection class from other classes
|
||||
transport = 'containers.podman.podman'
|
||||
has_pipelining = True
|
||||
# We know that pipelining does not work with podman. Do not enable it, or
|
||||
# users will start containers and fail to connect to them.
|
||||
has_pipelining = False
|
||||
|
||||
def __init__(self, play_context, new_stdin, *args, **kwargs):
|
||||
super(Connection, self).__init__(play_context, new_stdin, *args, **kwargs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue