mirror of
https://github.com/curl/curl.git
synced 2026-08-25 22:13:33 +03:00
rustls: fix error in recv handling
- when rustls is told to recieve more TLS data and its internal plaintext buffers are full, it returns an IOERROR - avoid receiving TLS data while plaintext is not read empty pytest: - increase curl run timeout when invoking pytest with higher verbosity Closes #10876
This commit is contained in:
parent
544abeea83
commit
3797f1a4ca
2 changed files with 93 additions and 66 deletions
|
|
@ -288,7 +288,7 @@ class Env:
|
|||
self._verbose = pytestconfig.option.verbose \
|
||||
if pytestconfig is not None else 0
|
||||
self._ca = None
|
||||
self._test_timeout = 60.0 # seconds
|
||||
self._test_timeout = 300.0 if self._verbose > 1 else 60.0 # seconds
|
||||
|
||||
def issue_certs(self):
|
||||
if self._ca is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue