fix https transport bug

pull/10316/head
Dann Bohn 10 years ago
parent 84e18b00d6
commit b9bfb22a9d

@ -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):

Loading…
Cancel
Save