15
0
Files
python-asyncssh/gss_test.patch
Ondřej Súkup 14ec0db318 - update to 2.2.0
- add gss_test.patch to avoid segfault in kerberos
 * Added support for U2F/FIDO2 security keys
 * Added login timeout client option and limits on the length and number
    of banner lines AsyncSSH will accept prior to the SSH version header.
 * Improved load_keypairs() to read public key files, confirming that they
    are consistent with their associated private key when they are present.
 * Fixed issues in the SCP server related to handling filenames with spaces.
 * Fixed an issue with resuming reading after readuntil() returns an incomplete read.
 * Fixed a potential issue related to asyncio not reporting sockname/peername
    when a connection is closed immediately after it is opened.
 * Made SSHConnection a subclass of asyncio.Protocol to please type checkers.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=24
2020-03-02 14:21:15 +00:00

14 lines
543 B
Diff

Index: asyncssh-2.2.0/tests/test_connection.py
===================================================================
--- asyncssh-2.2.0.orig/tests/test_connection.py
+++ asyncssh-2.2.0/tests/test_connection.py
@@ -1173,7 +1173,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