fix(api): fix uvicorn config loop arg

We were providing the loop itself, not the kind of loop. This didn't appear to cause any issues whatsoever, but now it's correct.
This commit is contained in:
psychedelicious 2023-10-18 13:40:26 +11:00
parent 9e06371178
commit ef14ba1713

View File

@ -245,7 +245,7 @@ def invoke_api():
app=app,
host=app_config.host,
port=port,
loop=loop,
loop="asyncio",
log_level=app_config.log_level,
)
server = uvicorn.Server(config)