Judson Lester
Judson Lester
It seems like the menu still flows down, so it goes offscreen and disappears.
As of #424 we can match on multiple Accept types. The examples haven't yet been updated for this behavior yet, however.
As a follow-on to #414 we could use a regression test to demonstrate that protocol errors sent by a client doesn't crash the server.
As of #424 we can check for multiple types in an Accept header, but currently ignore client `q` parameters for selecting a response. Gotham should respect the quality parameter and...
Against v0.1.2, I was doing: https://github.com/nyarly/d2tools/blob/0733e7f3b6f322f0d0ed0c91f77c605657ab71a5/src/server/mod.rs#L34-L54 ```rust pub fn start_https() -> Result { let der = include_bytes!("../identity.p12"); let cert = Pkcs12::from_der(der, "mypass")?; let tls_cx = TlsAcceptor::builder(cert)?.build()?; let proto = proto::Server::new(Http::new(),...
https://docs.rs/hyper/0.12.25/hyper/server/conn/struct.Http.html#method.with_executor Seems that hyper uses the background tokio executor by default, which would break the contract implied by start_on_executor.
I was trying to incorporate https://github.com/stephank/hyper-staticfile into a Gotham app, and realized that since 0.2.0 decomposes the Request into State, it's kind of tricky to wrap hyper services in Gotham....
Especially with the idea of providing for modular web apps, it would be incredibly useful to be able to do something like ```rust Response::new() .with_header(Location::new(url_for(other_handler)) ``` (this is intended to...
One of the amazing and often overlooked benefits of a logic-less template is that the templates can be interrogated for the context variables they require, and the structure of the...
A configuration error in our systems produced metrics of the form `"kafka_server_socket_server_metrics_connection_close_rate:_0_04179029629320072"` - the fix for this is obvious now, but in the meantime it's created real problems in our...