Skip to content

Commit

Permalink
Update dynamodb.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ehanson8 committed Jan 25, 2022
1 parent 82743dd commit 27d3490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awd/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def add_doi_item_to_database(self, doi_table, doi):
TableName=doi_table,
Item={
"doi": {"S": doi},
"status": {"S": str(Status.PROCESSING)},
"status": {"S": str(Status.PROCESSING.value)},
"attempts": {"S": "0"},
},
)
Expand Down

0 comments on commit 27d3490

Please sign in to comment.