ngachung commented on PR #118:
URL: https://github.com/apache/sdap-ingester/pull/118#issuecomment-4551244341
@RKuttruff Thank you for building and testing in EKS! Because we bumped
aioboto3 version we also have to change
```
async with aioboto3.resource("s3") as s3:
```
to
```
session = aioboto3.Session()
async with session.resource("s3") as s3:
```
That error _should_ be resolved now.
--
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]