Stephen M. Coakley

Results 168 comments of Stephen M. Coakley

Thanks for opening an issue. This is not currently supported in Isahc v1, however support is planned and implemented already for the upcoming v2 release.

Thanks for keeping up with this, I don't really have great means of testing these less common architectures regularly so it is fair to point them out. I'm not sure...

curl-rust is a thin wrapper over [libcurl](https://curl.se/libcurl/) so generally examples out in the wild using the libcurl API in most any language should translate to some degree to curl-rust. (Note...

@nyovaya Enabling verbose logging will usually help you troubleshoot libcurl behavior. I do see one problem in your code, that you're using `CURLOPT_POSTFIELDSIZE` / `post_field_size` (which only has to do...

There's not currently a way to specify which TLS version to use, however this is something that I believe is already implemented in the version 2 branch (currently on hold)....

Apologies! Yes, eventually I intend to upgrade Isahc to the latest http crate version. Unfortunately due to life events, my free time has been significantly limited for the past year...

Digging into this a bit more, not familiar with the codebase but the fact that `RescheduleTracker` is getting reset to null on some of these reschedules seems a bit dubious....

@tgross Here's the evaluation history for a couple of jobs that placed 7 allocations even though `Attempts` was set to 2, along with their allocations: [5df4fd90-d0b3-46e1-992d-45f61b08c537-allocations.json](https://github.com/hashicorp/nomad/files/15112872/5df4fd90-d0b3-46e1-992d-45f61b08c537-allocations.json) [5df4fd90-d0b3-46e1-992d-45f61b08c537-evaluations.json](https://github.com/hashicorp/nomad/files/15112874/5df4fd90-d0b3-46e1-992d-45f61b08c537-evaluations.json) [f290af7c-5bb9-41da-b3db-d643f8e70600-allocations.json](https://github.com/hashicorp/nomad/files/15112875/f290af7c-5bb9-41da-b3db-d643f8e70600-allocations.json) [f290af7c-5bb9-41da-b3db-d643f8e70600-evaluations.json](https://github.com/hashicorp/nomad/files/15112876/f290af7c-5bb9-41da-b3db-d643f8e70600-evaluations.json) The...

The Share API is pretty unsafe, as you have to bring your own mutexes and manually keep track of references to avoid use-after-free. It might be doable, but would be...

Yes, certain elements are already shared between handles that are added to the same multi, which IMO also limits the usefulness of the Share API if Multi does some of...