-
Notifications
You must be signed in to change notification settings - Fork 42
Description
TL;DR I assuming that this issue has something to do with socket connection.
I have an Issue which is hard to explain. Every ~30/45 minutes I have some network ananomly. When watching a stream/youtube video it just buffers for a second and when playing games, you dont notice any lag or anything, I am assuming that there might be a short lag spike burst or some sort of socket reconnect issue.
When this network issue accours i get the message
"keepalive missed, connection lost. reconnecting..."
In rare cases I get another traceback:
"exception while resubscribing
Traceback (most recent call last):
File "x\twitchAPI\eventsub\websocket.py", line 376, in _resubscribe
await self._subscribe(**sub)
File "x\twitchAPI\eventsub\websocket.py", line 221, in _subscribe
raise EventSubSubscriptionError(result.get('message'))
twitchAPI.type.EventSubSubscriptionError: websocket transport session does not exist or has already disconnected
exception while resubscribingI looked into the Chat class :
the check_connection() is always True
I tried changing some numbers on:
- join_timeout
- ping_frequency
- ping_jitter
- reconnect_delay_steps
but this has no effect.
I tried upgrading from v 4.0.1 to 4.2.0 but its still the same issue, the only difference I noticed is that there is a new message
Reached timeout for websocket receive, will attempt a reconnectIn rare situation it automaticly reconnects after 5-10 minutes.
I assuming that has something to do with socket connection & not with the twitch implementaiton