utkarsharma2 commented on PR #31197:
URL: https://github.com/apache/airflow/pull/31197#issuecomment-1546686797
@ferruzzi I'm not able to reproduce this on my local below code is working
for me. I'm using breeze to run my test which is using docker image -
`ghcr.io/apache/airflow/main/ci/python3.7:latest`
```
from datetime import datetime
from airflow import DAG
from airflow.providers.amazon.aws.transfers.dynamodb_to_s3 import
DynamoDBToS3Operator
with DAG(
dag_id='example_export_dynamodb',
schedule_interval=None,
start_date=datetime(2021, 1, 1),
tags=['example'],
catchup=False,
) as dag:
dynamodb_to_s3_operator = DynamoDBToS3Operator(
task_id="dynamodb_to_s3",
dynamodb_table_name="test",
s3_bucket_name="tmp9",
file_size=4000,
export_time=datetime.now(),
s3_key_prefix="test"
)
```
Can you please share the details of environment in which you are running
tests? I'll try to reproduce this on my local.
--
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]