We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a60c6c1 + b0ce29d commit 5942bfbCopy full SHA for 5942bfb
docs/changelog.rst
@@ -21,7 +21,8 @@ v0.2.10 (unreleased)
21
To avail of fixes in an unreleased version, please download a ZIP file
22
`directly from GitHub <https://github.com/dw/mitogen/>`_.
23
24
-*(no changes)*
+* :gh:issue:`756` ssh connections with `check_host_keys='accept'` would
25
+ timeout, when using recent OpenSSH client versions.
26
27
28
v0.2.9 (2019-11-02)
mitogen/ssh.py
@@ -72,7 +72,10 @@
72
)
73
74
HOSTKEY_REQ_PATTERN = re.compile(
75
- b(r'are you sure you want to continue connecting \(yes/no\)\?'),
+ b(
76
+ r'are you sure you want to continue connecting '
77
+ r'\(yes/no(?:/\[fingerprint\])?\)\?'
78
+ ),
79
re.I
80
81
0 commit comments