TypeError in Uvicorn logging module #2249
-
Description: Steps to Reproduce:
Expected Behavior: Actual Behavior: Error Message:
Additional Information:
Here is the full error
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Experiencing the same. |
Beta Was this translation helpful? Give feedback.
-
The port parameter is of type |
Beta Was this translation helpful? Give feedback.
The port parameter is of type
int
(port: int
), you're providing port as string, it should be a number without quotes.IDK if uvicorn should explicitly cast the port to int or not but your issue lies with that parameter only.