Skip to content

Commit

Permalink
Merge pull request #197 from brave/history_ttl_30d
Browse files Browse the repository at this point in the history
Decrease expiration period for history from 90 to 60 days
  • Loading branch information
DJAndries authored Feb 2, 2024
2 parents ef867b5 + dd0aac3 commit 555e897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datastore/sync_entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const (
historyDeleteDirectiveTypeID int = 150251
// Expiration time for history and history delete directive
// entities in seconds
HistoryExpirationIntervalSecs = 60 * 60 * 24 * 90 // 90 days
HistoryExpirationIntervalSecs = 60 * 60 * 24 * 60 // 60 days
)

// SyncEntity is used to marshal and unmarshal sync items in dynamoDB.
Expand Down

0 comments on commit 555e897

Please sign in to comment.