Open ttonelli-via opened 9 months ago
@roeap I believe this issue should be resolved with some of the latest PRs. Any chance you could release a new version of this so the fix is available?
For my own purposes I have a minimal fork here, but I'm more focused on creating an ObjectStore instance for use by Rust code, rather than making IO calls from Python directly.
Thanks @kylebarron. In my case, I am maintaining an internal python library at my job that uses this package, so we need this version to be pip install
able.
I'd also love to be able to install this with pip
. We've standardized on sticking with pip
so can't use poetry
What's going on:
I am getting a panic error when trying to use this library to test against a localstack instance running inside a docker container.
Minimal steps to reproduce:
The use of the library here:
Here are the environment variables I am using, exported in the current shell that I run the above python code from:
Here is the docker compose setup I am using for the localstack instance
The error
The panic originates from this
.expect()
call from version 0.5.6 of the object store crate, which appears to be a workaround to an issue inreqwest
that has since been resolved. The implementation of this same method in version 0.9.0 of the object store crate appears to have adjusted to the fix to the underlying issue inreqwest
. My guess is that it's highly likely that the changes in #5 make this a non-issue.