You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
await bucket.copy({"Bucket": source_bucket, "Key": source_key}, target_key)
File "/home/grigory-bogush/.cache/pypoetry/virtualenvs/magic-action-runner-wY7p_e2F-py3.10/lib/python3.10/site-packages/aioboto3/s3/inject.py", line 426, in copy
await self.upload_fileobj(
File "/home/grigory-bogush/.cache/pypoetry/virtualenvs/magic-action-runner-wY7p_e2F-py3.10/lib/python3.10/site-packages/aioboto3/s3/inject.py", line 373, in upload_fileobj
raise exception
File "/home/grigory-bogush/.cache/pypoetry/virtualenvs/magic-action-runner-wY7p_e2F-py3.10/lib/python3.10/site-packages/aioboto3/s3/inject.py", line 276, in file_reader
data = await data_chunk
File "/home/grigory-bogush/.cache/pypoetry/virtualenvs/magic-action-runner-wY7p_e2F-py3.10/lib/python3.10/site-packages/aiobotocore/response.py", line 56, in read
chunk = await self.__wrapped__.content.read(
AttributeError: 'MockRawResponse' object has no attribute 'content'
The text was updated successfully, but these errors were encountered:
1. use minio instead of moto for mimicking s3 behavior.
2. removed moto dependency as it is not compatible with aiobotocore (getmoto/moto#7070 (comment))
* tests(datalake): use minio
1. use minio instead of moto for mimicking s3 behavior.
2. removed moto dependency as it is not compatible with aiobotocore (getmoto/moto#7070 (comment))
* - moved test_datalake_profiler_e2e.py to datalake/test_profiler
- use minio instead of moto
* fixed tests
* fixed tests
* removed default name for minio container
When mocking s3 with
mock_s3
copying files doesn't work with aioboto3.The text was updated successfully, but these errors were encountered: