Rasmus Kaj
Rasmus Kaj
I think "this sealed trait" in that sentence refers to `AsLocation` itself. It exists so that warp can decide to impl for more types without chaning the `redirect` method, and...
At least when creating the response with a `warp::http::response::Builder`, there is a `content-length` header, and I think that is the correct place to have it. But maybe it's missing sometimes...
It seems it normally is hyper that sets the content-length header (along with date) if it (they) are missing in the Response about to be sent. But it only sets...
You realize that the suggested logging would enable progress indication on the server side only, not in the client (which probably already have progress indication for files large enough that...
For reference: The "other option", `impl Reply for Result where T: Reply, E: Reply`, is suggested in #458 .
Does the book have to be a separate entity, or can we instead add more text to the lib and module overviews in the reference? Maybe even att some "documentation-only...
Since #4252 is closed, I'll continue the discussion here: As all the other options (domain, sameSite, etc) needs to be the same when clearing the cookie as when setting it,...
Yes, rust can do compile-time verification of regular expressions! https://docs.rs/lazy-regex/latest/lazy_regex/ This crate uses a macro that wraps the regex in a once-cell, so it is only compiled once at runtime,...
A workround that seems fine to me is to use a variable. Specification `my.hurl`: ``` GET {base}/api HTTP 200 ``` Command line: ``` $ hurl --variable base=https://myhost my.hurl ``` Only...
Hm, Wouldn't this order be more apropriate? 1. Entry [Options] section in Hurl file 2. Command-line options 3. Global [Options] section in Hurl file Assuming 1 overrides 2 which overrides...