warp icon indicating copy to clipboard operation
warp copied to clipboard

A super-easy, composable, web server framework for warp speeds.

Results 164 warp issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** It would be convenient to be able to define query parameters in the path! macro. **Describe the solution you'd like**...

feature

The current implementation of `multipart::form` requires that the `Content-Length` header exists. However, there are valid situations where this is not the case, for example when `Transfer-Encoding` header is present. See...

As far as I know there is no way to do this right now. However I think it is a necessity for a server to have. I tried to implement...

feature

I wrote a client with a small bug where it makes a request to a warp server with an extra `/` at the front of the path: `//api/v1/blah`. My reading...

bug

**Version** `0.3.2`, and the same code is still present in `master` at time of writing this. **Platform** Linux nbarch2 5.15.4-arch1-1 #1 SMP PREEMPT Sun, 21 Nov 2021 21:34:33 +0000 x86_64...

bug

Hello, if fast update (F5) not wait, http://127.0.0.1:3030/test the function (page_get) is interrupted does not reach the end **warp: 0.3.2** ``` use warp::{reject, Rejection, Filter}; use std::convert::Infallible; use tokio::time; use...

**Is your feature request related to a problem? Please describe.** The behavior of `Filter::and` and `Filter::and_then` in case the `self` argument produces a rejection is not documented. **Describe the solution...

feature

This is for issue #62 based on pr #716 but mine actually works. However I understand it is a crazy hack how I pass the realm name along to create...

**Version** warp 0.3.2 **Platform** Linux 5.13.0-7620-generic **Description** when using tracing with warp, and the [tracing filters](https://docs.rs/warp/latest/warp/filters/trace/index.html), the generated tracing span ends before the entire response body is sent It is...

bug

**Keep-Alive connections. Where do they enter the picture** I'm looking for a way to keep a mysql connection alive for a client connection using `connection: keep-alive` Does a keep-alive connection...

feature