We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9263c8e commit 01bd315Copy full SHA for 01bd315
launcher.py
@@ -33,7 +33,7 @@ async def main() -> None:
33
async with aiohttp.ClientSession() as session, core.Database() as database:
34
app: api.Server = api.Server(session=session, database=database)
35
36
- config = uvicorn.Config(app, port=core.config['SERVER']['port'])
+ config = uvicorn.Config(app, port=core.config['SERVER']['port'], ws_ping_interval=10, ws_ping_timeout=None)
37
server = uvicorn.Server(config)
38
await server.serve()
39
0 commit comments