[issue33093] Fatal error on SSL transport

2018-03-20 Thread kyuupichan
kyuupichan <kyuupic...@gmail.com> added the comment: Looks like https://bugs.python.org/issue33037 -- nosy: +kyuupichan ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue29970] Severe open file leakage running asyncio SSL server

2017-12-11 Thread kyuupichan
kyuupichan <kyuupic...@gmail.com> added the comment: I'm not sure what you mean about this being a server-specific problem. It's clearly a bug in the asyncio SSL wrapper as using TCP instead of SSL with otherwise identical code doesn't leak open

[issue29970] Severe open file leakage running asyncio SSL server

2017-06-18 Thread kyuupichan
kyuupichan added the comment: @Nikolay Kim As I note in the original submission, 480 was tested and does NOT solve this issue. Thanks. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue30105] Duplicated connection_made() call for some SSL connections

2017-04-19 Thread kyuupichan
New submission from kyuupichan: An asyncio SSL server frequently sees duplicated connection_made() calls for an incoming SSL connection. It does not happen to all SSL connections; perhaps 10-25% of them. It never happens to TCP connections. Here are some examples of logs from one I run. I

[issue29970] Severe open file leakage running asyncio SSL server

2017-04-03 Thread kyuupichan
New submission from kyuupichan: Original report at old repo here: https://github.com/python/asyncio/issues/483 There this is reported fixed by https://github.com/python/cpython/pull/480 I wish to report that whilst the above patch might have a small positive effect, it is far from solving