Replies: 1 comment 1 reply
-
The S3 implementation defaults to using InstanceMetadata based credentials for consistency with AWS SDKs. If you specify an alternative credential, e.g. an access key pair, it will use that instead |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using
object_store
with a SeaweedFS container, this way my whole development setup is local. I'm running into a problem where the client is trying and failing to connect to the AWS metadata endpoint,http://169.254.169.254/latest/api/token
.My first guess is that the client eagerly tries to get an authentication token before performing the S3 request. (Although the error is saying "Host is down", which seems to suggest some kind of routing error?)
Would it make sense for the client to try to authenticate lazily, after getting a 401 Unauthenticated or an equivalent response?
Beta Was this translation helpful? Give feedback.
All reactions