Threading support to main twisted reactor

This commit is contained in:
Midorica 2023-07-07 21:50:24 -04:00
parent 1edec7dba2
commit 737312ca3d
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ from twisted.web import server, resource
from twisted.internet import reactor, endpoints from twisted.internet import reactor, endpoints
from twisted.web.http import Request from twisted.web.http import Request
from routes import Mapper from routes import Mapper
from threading import Thread
class HttpDispatcher(resource.Resource): class HttpDispatcher(resource.Resource):
def __init__(self, cfg: CoreConfig, config_dir: str): def __init__(self, cfg: CoreConfig, config_dir: str):
@ -283,4 +283,4 @@ if __name__ == "__main__":
server.Site(dispatcher) server.Site(dispatcher)
) )
reactor.run() # type: ignore Thread(target=reactor.run, args=(False,)).start()