Skip to content

Commit 65e68cd

Browse files
committed
Merge pull request ansible#10316 from whereismyjetpack/winrm_https
plaintext https transport connecting over http
2 parents a6fbd83 + 5da5fa1 commit 65e68cd

File tree

1 file changed

+1
-1
lines changed
  • lib/ansible/runner/connection_plugins

1 file changed

+1
-1
lines changed

lib/ansible/runner/connection_plugins/winrm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class Connection(object):
5656

5757
transport_schemes = {
5858
'http': [('kerberos', 'http'), ('plaintext', 'http'), ('plaintext', 'https')],
59-
'https': [('kerberos', 'https'), ('plaintext', 'http'), ('plaintext', 'https')],
59+
'https': [('kerberos', 'https'), ('plaintext', 'https')],
6060
}
6161

6262
def __init__(self, runner, host, port, user, password, *args, **kwargs):

0 commit comments

Comments
 (0)