mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
fix https transport bug
This commit is contained in:
@@ -56,7 +56,7 @@ class Connection(object):
|
|||||||
|
|
||||||
transport_schemes = {
|
transport_schemes = {
|
||||||
'http': [('kerberos', 'http'), ('plaintext', 'http'), ('plaintext', 'https')],
|
'http': [('kerberos', 'http'), ('plaintext', 'http'), ('plaintext', 'https')],
|
||||||
'https': [('kerberos', 'https'), ('plaintext', 'http'), ('plaintext', 'https')],
|
'https': [('kerberos', 'https'), ('plaintext', 'https'), ('plaintext', 'https')],
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, runner, host, port, user, password, *args, **kwargs):
|
def __init__(self, runner, host, port, user, password, *args, **kwargs):
|
||||||
|
|||||||
Reference in New Issue
Block a user