sanic icon indicating copy to clipboard operation
sanic copied to clipboard

Accelerate your web app development | Build fast. Run fast.

Results 179 sanic issues
Sort by recently updated
recently updated
newest added

### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe. I am running...

feature request

Remove chunked encoding that is not needed (allowed? but curl supports it) in H3. Logging was failing with binary data because it tried to print Unicode decoded data to logs....

### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug Sanic, like most web servers, usually responds to requests. However,...

bug

Sanic would use any host setting for URL construction. This PR fixes the common cases of normal localhost and wildcard addresses, for which we instead display localhost. Similarly for UNIX...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe. As far as...

feature request

### Is there an existing issue for this? - [ ] I have searched the existing issues ### Describe the bug create wss with C , find some more info...

bug

### Is there an existing issue for this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe. _No response_ ###...

feature request

### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug ``` D:\miniconda3\envs\sanic\python.exe D:/PythonProjects/untitled/11.py [2023-06-21 09:28:51 +0800] [16972] [INFO] Sanic v22.9.1...

feature request

### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug On Linux Sanic runs all four server events as expected,...

bug

Following the [discussion](https://community.sanicframework.org/t/streaming-handling-improvements/1192), this PR adds a check for the streaming case to early quit request processing in case request has a content length larger than the `REQUEST_MAX_SIZE`. Tested locally...