Stephen M. Coakley

Results 115 comments of Stephen M. Coakley

This caught me off-guard as well; I assumed that accessing the URI components would do the percent decoding for me but it seems that is not the case. Perhaps we...

This is the main reason why I've been maintaining my own Matomo images; the recommended approaches here don't work in a setup like Docker Swarm. * Running cron on the...

To this day, the only way in Swarm to pin two containers to the same node is to pin both to a _specific_ node, which is unacceptable for high availability....

:+1:. I'm looking to run tests as part of a larger suite of tasks inside one Lua process, and I can't figure out the correct way to do so. I...

Thanks for filing an issue! Advanced auth mechanisms such as NLTM are finicky and depend on how underlying libcurl is compiled. This issue may also be related: https://github.com/alexcrichton/curl-rust/issues/359 You can...

Yeah I think this is safe. Not sure about the code coverage, I wonder if that is a fluke and just needs re-run.

Creating a `ResponseFuture` does already require cloning an `Arc`, but the scope of what that `Arc` contains is too small. We will want to broaden the scope such that only...

One of the default features is `static-curl` which builds a local libcurl instead of using the system one; I'm guessing that this is the difference for some reason. Maybe the...

Looks like digest auth is being disabled at compile time upstream: https://github.com/alexcrichton/curl-rust/blob/65d360ff46dc2bdede7bb396b382f76a4c3fdfcd/curl-sys/build.rs#L106. I'll work on a fix upstream for this. In the meantime, using the system-wide libcurl (by disabling the...

No updates yet, sorry. :cry: A workaround is still to use a system libcurl with digest support by disabling the `static-curl` feature.