Retain uploads for 6 hours

This commit is contained in:
Alex Gleason 2024-09-30 20:33:17 -05:00
parent 52b02043d9
commit 50733d6e0b
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -12,5 +12,5 @@ export interface DittoUpload {
export const dittoUploads = new LRUCache<string, DittoUpload>({ export const dittoUploads = new LRUCache<string, DittoUpload>({
max: 1000, max: 1000,
ttl: Time.minutes(15), ttl: Time.hours(6),
}); });