Rob Ede

Results 360 comments of Rob Ede

To expand on the `#[resource]` idea, it might look something like the following which **would** be able to accurately figure out what to put in an Allow header. ```rust #[resource("/hello")]...

I need to find time to fill in [this skeleton middleware authors guide](https://github.com/actix/actix-web/blob/master/actix-web/src/middleware/authors-guide.md). Marking this as a docs issue since this is just how it works until at least the...

I suspect this could be tested in a trybuild test and asserting the compiler output contains the desired warning.

Good idea. That would work too, yeah.

Only the question about breakage is keeping this from being merged. I've asked the other contributors for input. My view is this could reasonably be called a fix and resulting...

Makes me sad but we can't really justify this before the next breaking change and I don't see a way to do it without breaks.

Magically adding services to the routing tree is a non-goal of Actix Web. There might be something we can tweak to make them flag to `cargo check` as unused code...

Huh that _is_ weird. I'll have a go using `h2` and/or `rustls` directly and see how it behaves.

A manual re-creation of the h2 + rustls does not result in broken pipe errors so there is almost certainly a hidden bug.

Bug relates to ping-pong behavior when pong frames are not sent back from client. Workaround for this issue is to set `.keep_alive(None)` (or just higher interval) which controls ping-pong frequency....