[uvicorn error] You must pass the application as an import string to enable 'reload' or 'workers'.

yoonene·2023년 10월 11일

uvicorn을 통해 api를 띄울 때 다음과 같은 경고와 함께 실패하였다.
WARNING: You must pass the application as an import string to enable 'reload' or 'workers'.

문제 원인
uvicorn.run 시 string 형태로 넘겨줘야 한다.

문제 해결
before: uvicorn.run(app, host="0.0.0.0", port=5000, workers=16)
after: uvicorn.run("main:app", host="0.0.0.0", port=5000, workers=16)

profile
NLP Researcher / Information Retrieval / Search

0개의 댓글