tjpalanca commented on issue #37888:
URL: https://github.com/apache/arrow/issues/37888#issuecomment-3231662863
This is also affecting me through `ibis`. A workaround is to use `boto3` to
explicitly drop the credentials into the environment:
```python
import boto3
import os
session = boto3.Session(<args>)
credentials = session.get_credentials().get_frozen_credentials()
os.environ.update({
"AWS_ACCESS_KEY_ID": credentials.access_key,
"AWS_SECRET_ACCESS_KEY": credentials.secret_key,
"AWS_SESSION_TOKEN": credentials.token
})
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]