Merge pull request #2102 from lbryio/shutdown_fast
Set a shutdown timeout for TCPSite to avoid hanging on exit
This commit is contained in:
commit
7cdb7987e3
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ class Daemon(metaclass=JSONRPCServerType):
|
|||
await self.runner.setup()
|
||||
|
||||
try:
|
||||
site = web.TCPSite(self.runner, self.conf.api_host, self.conf.api_port)
|
||||
site = web.TCPSite(self.runner, self.conf.api_host, self.conf.api_port, shutdown_timeout=.5)
|
||||
await site.start()
|
||||
log.info('lbrynet API listening on TCP %s:%i', *site._server.sockets[0].getsockname()[:2])
|
||||
except OSError as e:
|
||||
|
|
Loading…
Reference in a new issue