Skip to content

Commit

Permalink
Reduce article delivery dupe cache to 30m
Browse files Browse the repository at this point in the history
  • Loading branch information
synzen committed Dec 9, 2024
1 parent a45e877 commit ab405d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/user-feeds/src/delivery/delivery.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class DeliveryService {
const priorDeliveryDate = await this.cacheStorageService.set({
key: cacheKey,
getOldValue: true,
expSeconds: 60 * 60 * 24,
expSeconds: 60 * 30,
body: new Date().toISOString(),
});

Expand Down

0 comments on commit ab405d7

Please sign in to comment.