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
Passing a string to reload_dirs as in the following, causes reload to silently not work :
uvicorn.run( "dp.server:app", host="127.0.0.1", port=5000, log_level="info", reload=True, reload_dirs="/home/maxou/dev/proj", reload_delay=2.0 )
Giving reload_dirs an array : ["/home/maxou/dev/proj"] fixes the problem
It's not really a bug, but complaining with an error message would improve the user experience.
The text was updated successfully, but these errors were encountered:
definitely something that could be improved and that would have been detected by mypy I think.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Passing a string to reload_dirs as in the following, causes reload to silently not work :
Giving reload_dirs an array : ["/home/maxou/dev/proj"] fixes the problem
It's not really a bug, but complaining with an error message would improve the user experience.
The text was updated successfully, but these errors were encountered: