Tim Geoghegan
Tim Geoghegan
[Here](https://github.com/abetterinternet/prio-server/pull/615) is the change I made in my application to work around this, including a test case that hopefully illustrates the problem.
I'm in a similar bind: I'd like to be able to tell if a request failed because the server reset the connection so that I can retry appropriately. I set...
That works nicely, thank you for the code! I think what I really want is something like either #799 or #316, but I don't want to dilute the focus of...
Thank you for that tip, @francislavoie! I landed on this plugin because it's listed among the `caddy.storage` implementations [here](https://caddyserver.com/docs/json/storage/). Perhaps the list of endorsed storage plugins should be updated, but...
There's a couple ways to resolve this, off the top of my head. `ring` could introduce a feature that makes it use `arc4random(3)` or [`CCRandomGenerateBytes`](https://opensource.apple.com/source/CommonCrypto/CommonCrypto-60178.40.2/include/CommonRandom.h.auto.html) (both of which are in...
Enabling zero-copy decoding is a good direction to take. I did the simplest thing that would work in the current iteration of the `codec` module, following the unofficial Rust programmer...
Cool, thank you for taking a look. Please let me know if there's anything I can do to improve this change or make it easier to merge, such as rebasing...
I rebased and addressed your comment in `crates/deadpool-postgres/src/lib.rs`. Testing for race conditions sounds like a good idea. Does the project have anything in place to do that? If not, how...
I will take a swing at the testable abstraction you describe. It might take me a little while to come back around to this PR, though.