Closed chrismwendt closed 11 months ago
Prior to this change, runServer would not kill the threads it forked. Namely, it would lose track of the appAsyncs.
runServer
appAsync
After this change, runServer will kill all threads it forks.
This modifies code created in https://github.com/jaspervdj/websockets/pull/199 cc @jaspervdj
@jaspervdj this can be merged as it does indeed fail to close the thread if killer is not installed.
Prior to this change,
runServer
would not kill the threads it forked. Namely, it would lose track of theappAsync
s.After this change,
runServer
will kill all threads it forks.This modifies code created in https://github.com/jaspervdj/websockets/pull/199 cc @jaspervdj