Skip to content

Commit

Permalink
fix: fixing table name
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Oct 22, 2023
1 parent c7f9621 commit 206853b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambda/inject-threads/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import random

db = boto3.resource("dynamodb", region_name="ap-northeast-1")
table = db.Table(os.getenv('TABLE_NAME'))
table = db.Table(os.getenv('THREAD_TABLE_NAME'))

s3_client = boto3.client('s3')
bucket = os.getenv('BUCKET_NAME')
Expand Down

0 comments on commit 206853b

Please sign in to comment.