[issue36098] asyncio: ssl client-server with "slow" read

2022-03-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks for checking -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue36098] asyncio: ssl client-server with "slow" read

2022-03-04 Thread Kumar Aditya
Kumar Aditya added the comment: This has been fixed with bpo-44011 on main branch. Output on main branch: -- /workspaces/cpython/main.py:42: DeprecationWarning: There is no current event loop loop =

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread Christian Heimes
Christian Heimes added the comment: The additional read may read the TLS shutdown alert from the wire. The TLS record layer can send additional messages besides application layer data, e.g. for post handshake authentication, sessions, rekeying, and to indicate that one side is shutting down

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread Alexander Mohr
Alexander Mohr added the comment: so I did some investigation into the difference between aiohttp + httpx and it appears that for some reason httpx does an extra read after the connection is closed. -- ___ Python tracker

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread Alexander Mohr
Alexander Mohr added the comment: I've updated https://repl.it/@thehesiod/PristineBonyBugs#main.py to contain both httpx + aiohttp testcases, and now httpx reproduces almost immediately and aiohttp is still ok -- ___ Python tracker

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread Alexander Mohr
Alexander Mohr added the comment: as an FYI I've reproduced this with the httpx library as well: https://repl.it/repls/PristineBonyBugs#main.py. It reproduces on this site but I've been unable to reproduce it locally. It does always reproduce on our production systems. what's interesting

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread J. Nick Koston
Change by J. Nick Koston : -- nosy: +bdraco ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36098] asyncio: ssl client-server with "slow" read

2020-06-24 Thread Alexander Mohr
Change by Alexander Mohr : -- nosy: +thehesiod ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36098] asyncio: ssl client-server with "slow" read

2019-02-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks for the report. We definitely have to fix `AttributeError`. Unfortunately, SSL implementation in asyncio is very tricky. Yuri has an experimental asyncio ssl replacement in his uvloop project rewritten from scratch. There is a plan to port it into

[issue36098] asyncio: ssl client-server with "slow" read

2019-02-23 Thread MultiSosnooley
New submission from MultiSosnooley : Recently, some awesome contributors add support for implicit ssl mode for aioftp. But this produced some issues and one of them is not relevant to aioftp, but to asyncio. Here is link