You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I start my uvicorn application with the command uvicorn dcb_record_linker.server:app --host 127.0.0.1 --port 4372 I don't observe logs at all. There are only 2 messages in the logs:
/home/xxxxxx/lib/python3.9/site-packages/dask/dataframe/_pyarrow_compat.py:23: UserWarning: You are using pyarrow version 11.0.0 which is known to be insecure. See https://www.cve.org/CVERecord?id=CVE-2023-47248 for further details. Please upgrade to pyarrow>=14.0.1 or install pyarrow-hotfix to patch your current version.
warnings.warn(
2024-02-07T12:47:07.722Z dcb_record_linker [MainThread] INFO server.py:_load_model_from_dvc (65) - Fetching model from dvc.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After I start my uvicorn application with the command
uvicorn dcb_record_linker.server:app --host 127.0.0.1 --port 4372
I don't observe logs at all. There are only 2 messages in the logs:/home/xxxxxx/lib/python3.9/site-packages/dask/dataframe/_pyarrow_compat.py:23: UserWarning: You are using pyarrow version 11.0.0 which is known to be insecure. See https://www.cve.org/CVERecord?id=CVE-2023-47248 for further details. Please upgrade to pyarrow>=14.0.1 or install pyarrow-hotfix to patch your current version.
warnings.warn(
2024-02-07T12:47:07.722Z dcb_record_linker [MainThread] INFO server.py:_load_model_from_dvc (65) - Fetching model from dvc.
Tried this commands:
uvicorn dcb_record_linker.server:app --host 127.0.0.1 --port 4372
uvicorn dcb_record_linker.server:app --host 127.0.0.1 --port 4372 --log-level critical
uvicorn dcb_record_linker.server:app --host 127.0.0.1 --port 4372 --log-level info
And I tried different ports, but the result was always the same.
Log config:
Beta Was this translation helpful? Give feedback.
All reactions