Commit 07f12539 by Chris Baughman

Bugfix: #8720 winrm.py: protocol.send_message() crashes with https

parent 1787c293
...@@ -87,7 +87,7 @@ class Connection(object): ...@@ -87,7 +87,7 @@ class Connection(object):
_winrm_cache[cache_key] = protocol _winrm_cache[cache_key] = protocol
return protocol return protocol
except WinRMTransportError, exc: except WinRMTransportError, exc:
err_msg = str(exc.args[0]) err_msg = str(exc)
if re.search(r'Operation\s+?timed\s+?out', err_msg, re.I): if re.search(r'Operation\s+?timed\s+?out', err_msg, re.I):
raise errors.AnsibleError("the connection attempt timed out") raise errors.AnsibleError("the connection attempt timed out")
m = re.search(r'Code\s+?(\d{3})', err_msg) m = re.search(r'Code\s+?(\d{3})', err_msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment