Update notification_handler.py

Add fixme note.
This commit is contained in:
John Fleming 2024-02-20 00:55:57 -05:00 committed by GitHub
parent 8a459a4821
commit 8d7e7f8aea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,6 +83,7 @@ class NotificationHandler:
if not ws.closed:
await ws.close()
try:
# FIXME - This shouldn't be needed. Maybe need bug opened with aiohttp?
# call close to force close ws transport. Unknown root cause as of yet.
ws._req.transport.close()
except: