We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am running the following set up:
uvicorn src.main:app --reload --host 0.0.0.0 --port 13337
Observation:
curl http://127.0.0.1:13337
curl http://localhost:13337
What I've tried:
--reload
--workers 1
--workers n
Wanted to find out if this is a known issue and why this might be happening?
The text was updated successfully, but these errors were encountered:
chrmarti
No branches or pull requests
I am running the following set up:
uvicorn src.main:app --reload --host 0.0.0.0 --port 13337
Observation:
curl http://127.0.0.1:13337
within the devcontainer returns the correct responsecurl http://localhost:13337
from my local machine (outside the devcontainer) hangsWhat I've tried:
--reload
flag solves the issue. Similarly, setting--workers 1
also solves the issue. And--workers n
for n > 1 results in the same issueWanted to find out if this is a known issue and why this might be happening?
The text was updated successfully, but these errors were encountered: