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
In initialize_workers()this.decode_worker is overwritten without checking if a worker already exists and cleaning it up.
This means that with every reconnect-attempt, an additional worker is started.
Simply adding a check for this.decode_worker and terminating it unfortunately won't be enough, as there may be cases where a worker is created but never actually set to this.decode_worker
The text was updated successfully, but these errors were encountered:
In
initialize_workers()
this.decode_worker
is overwritten without checking if a worker already exists and cleaning it up.This means that with every reconnect-attempt, an additional worker is started.
Simply adding a check for
this.decode_worker
and terminating it unfortunately won't be enough, as there may be cases where a worker is created but never actually set tothis.decode_worker
The text was updated successfully, but these errors were encountered: