aws-samples / amazon-textract-serverless-large-scale-document-processing

Process documents at scale using Amazon Textract
Apache License 2.0
328 stars 165 forks source link

The code was initialising the same variable twice. This commit remove… #12

Closed denyshubh closed 1 year ago

denyshubh commented 4 years ago

The jobprocessor lambda function is twice declaring the same variable ddb and dynamodb in processRequest() function. dynamodb = AwsHelper().getResource("dynamodb") ddb = dynamodb.Table(outputTable)

issue aws-samples#11

Description of changes: This commit removes one of the duplicated declarations of ddb and dynamodb variables.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

dannellyz commented 1 year ago

Was there a reason this was never merged?