Replies: 1 comment 4 replies
|
To resolve the Here is the modified export LANGFLOW_DATABASE_URL="mysql+pymysql://${username}:${password}@${host}:3306/${dbname}"
export UVLOOP_NO_PATCH=1
# echo $LANGFLOW_DATABASE_URL
uvicorn --factory langflow.main:create_app --host 0.0.0.0 --port 7860 --reload --log-level debug --loop asyncio
# python -m langflow run --host 0.0.0.0 --port 7860This should prevent uvloop from being used and avoid the |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
@dosu getting error ValueError: Can't patch loop of type <class 'uvloop.Loop'> in langflow in docker container but not in local
All reactions