Skip to content

Commit

Permalink
fix: fix isNotifiedForApproachDeadline state type mismatch error
Browse files Browse the repository at this point in the history
  • Loading branch information
UmaxCode committed Jan 17, 2025
1 parent 586f29a commit 8ba24e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public TaskDto reopenTask(String id, TaskReopenDto request) {
":status", AttributeValue.builder().s("open").build(),
":deadline", AttributeValue.builder().s(request.deadline().toString()).build(),
":expired", AttributeValue.builder().s("expired").build(),
":false", AttributeValue.builder().s("0").build()
":false", AttributeValue.builder().n("0").build()
))
.expressionAttributeNames(Map.of(
"#status", "status"
Expand Down

0 comments on commit 8ba24e9

Please sign in to comment.