Skip to content

Commit ab405d7

Browse files
committed
Reduce article delivery dupe cache to 30m
1 parent a45e877 commit ab405d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/user-feeds/src/delivery/delivery.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class DeliveryService {
172172
const priorDeliveryDate = await this.cacheStorageService.set({
173173
key: cacheKey,
174174
getOldValue: true,
175-
expSeconds: 60 * 60 * 24,
175+
expSeconds: 60 * 30,
176176
body: new Date().toISOString(),
177177
});
178178

0 commit comments

Comments
 (0)