Skip to content

Commit

Permalink
fix(): add missing true flag to expiry time for events
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelvesavuori committed Mar 19, 2023
1 parent e35d2f5 commit 55a5729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/infrastructure/repositories/DynamoDbRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class DynamoRepository implements Repository {
Item: {
pk: { S: `EVENT_${repo}` },
sk: { S: timeCreated },
expiresAt: { S: getExpiryTime() },
expiresAt: { S: getExpiryTime(true) },
timeCreated: { S: eventTime },
timeResolved: { S: timeResolved },
message: { S: message },
Expand Down

0 comments on commit 55a5729

Please sign in to comment.