Skip to content

Commit 58d5032

Browse files
authored
fix: make worker count int (#213)
1 parent bc156ce commit 58d5032

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • wavefront/server/apps/floware/floware

wavefront/server/apps/floware/floware/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ async def global_exception_handler(request: Request, exc: Exception):
560560
'server:app',
561561
host='0.0.0.0',
562562
port=8001,
563-
workers=worker_count,
563+
workers=int(worker_count),
564564
log_level=uvicorn_log_level,
565565
forwarded_allow_ips='*',
566566
)

0 commit comments

Comments
 (0)