forked from pool/python-asyncssh
* Added the capability to defer invoking passphrase callback until
an encrypted private key is actually used in a signing operation,
rather than triggering the callback when keys are loaded. This
will only work when a public key is provided with an encrypted
private key either explicitly or as part of the key format (such
as in OpenSSH's private key format).
* Improved handling of KeyboardInterrupt and task cancellation in
SCP. Thanks go to Viktor Kertesz for reporting this issue and
helping to understand the behavior in various versions of Python.
* Fixed the env option to support mappings other than dict. Thanks
go to Boris Pavlovic for reporting this issue.
* Fixed a potential race condition in SSHForwarder cleanup. Thanks
go to GitHub user misa-hase for reporting this issue and helping
to test the fix.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=66
18 lines
634 B
Diff
18 lines
634 B
Diff
---
|
|
tests/test_connection.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: asyncssh-2.13.0/tests/test_connection.py
|
|
===================================================================
|
|
--- asyncssh-2.13.0.orig/tests/test_connection.py
|
|
+++ asyncssh-2.13.0/tests/test_connection.py
|
|
@@ -1546,7 +1546,7 @@ class _TestConnectionAsyncAcceptor(Serve
|
|
|
|
conn.logger.info('Acceptor called')
|
|
|
|
- return (await cls.create_server(_TunnelServer, gss_host=(),
|
|
+ return (await cls.create_server(_TunnelServer, gss_host=None,
|
|
acceptor=acceptor))
|
|
|
|
@asynctest
|