utkarsharma2 commented on PR #31142: URL: https://github.com/apache/airflow/pull/31142#issuecomment-1543289596
@ferruzzi I was able to reproduce the issue on local and there was a missing key `s3_key_prefix` which I have added and the format for export_time was not correct both of the issues have been fixed in PR - https://github.com/apache/airflow/pull/31197 and I have tested and verified below code on my local. ``` backup_db_to_point_in_time = DynamoDBToS3Operator( task_id="backup_db_to_point_in_time", dynamodb_table_name=table_name, file_size=1000, s3_bucket_name=bucket_name, export_time=datetime.now(), s3_key_prefix=f"{S3_KEY_PREFIX}-3-", ) ``` -- 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]
