You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was running tachyon on a staging site that uses a self signed certificate when I got a bunch of SSL errors.
Here's a snippet of the error messages :
SSL error in data received
protocol: <asyncio.sslproto.SSLProtocol object at 0x7f4bd11941d0>
transport: <_SelectorSocketTransport fd=51 read=polling write=<idle, bufsize=0>>
Traceback (most recent call last):
File "/usr/lib/python3.7/asyncio/sslproto.py", line 526, in data_received
ssldata, appdata = self._sslpipe.feed_ssldata(data)
File "/usr/lib/python3.7/asyncio/sslproto.py", line 207, in feed_ssldata
self._sslobj.unwrap()
File "/usr/lib/python3.7/ssl.py", line 767, in unwrap
return self._sslobj.shutdown()
ssl.SSLError: [SSL: KRB5_S_INIT] application data after close notify (_ssl.c:2605)
SSL error in data received
protocol: <asyncio.sslproto.SSLProtocol object at 0x7f4bd10b9470>
transport: <_SelectorSocketTransport fd=49 read=polling write=<idle, bufsize=0>>
Traceback (most recent call last):
File "/usr/lib/python3.7/asyncio/sslproto.py", line 526, in data_received
ssldata, appdata = self._sslpipe.feed_ssldata(data)
File "/usr/lib/python3.7/asyncio/sslproto.py", line 207, in feed_ssldata
self._sslobj.unwrap()
File "/usr/lib/python3.7/ssl.py", line 767, in unwrap
return self._sslobj.shutdown()
ssl.SSLError: [SSL: KRB5_S_INIT] application data after close notify (_ssl.c:2605)
SSL error in data received
protocol: <asyncio.sslproto.SSLProtocol object at 0x7f4bd10c5080>
transport: <_SelectorSocketTransport fd=45 read=polling write=<idle, bufsize=0>>
Traceback (most recent call last):
File "/usr/lib/python3.7/asyncio/sslproto.py", line 526, in data_received
ssldata, appdata = self._sslpipe.feed_ssldata(data)
File "/usr/lib/python3.7/asyncio/sslproto.py", line 207, in feed_ssldata
self._sslobj.unwrap()
File "/usr/lib/python3.7/ssl.py", line 767, in unwrap
return self._sslobj.shutdown()
ssl.SSLError: [SSL: KRB5_S_INIT] application data after close notify (_ssl.c:2605)
After running tachyon on the same site with the updated version of aiohttp in my virtualenv, I did not get any errors. I did not make extensive tests tho.
I was running tachyon on a staging site that uses a self signed certificate when I got a bunch of SSL errors.
Here's a snippet of the error messages :
I believe this issue is linked to aio-libs/aiohttp#3477.
Updating aiohttp to 3.5.4 seams to fix the issue.
The text was updated successfully, but these errors were encountered: