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
There are some places we serialize critical session.
Reactor thread, running the notification handler, by running it in the reactor thread.
sessionLoader, we load session one by one, spawn a thread each time, and wait for the preivous thread to end.
sessionRestart, we runs it in seperate threads but using an MVar to do the serlization.
The latter two create a challenge for our shutdown handler to halt the hls. Since they are not cancelable.
A possible solution, would be to switch the latter two to the first approach. Create a thread specifically to run the target critical session.
The text was updated successfully, but these errors were encountered:
There are some places we serialize critical session.
MVar
to do the serlization.The latter two create a challenge for our shutdown handler to halt the hls. Since they are not cancelable.
A possible solution, would be to switch the latter two to the first approach. Create a thread specifically to run the target critical session.
The text was updated successfully, but these errors were encountered: