From 6a14bf70e0a5fac05aa6eb466f918ec1982b853c Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Mon, 10 Jun 2024 16:57:19 -0400 Subject: [PATCH] Extend push token removal grace period from 3 days to 14 --- .../workers/ProcessPushNotificationFeedbackCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/workers/ProcessPushNotificationFeedbackCommand.java b/service/src/main/java/org/whispersystems/textsecuregcm/workers/ProcessPushNotificationFeedbackCommand.java index 2dcf0fedc..ffdb7ab4f 100644 --- a/service/src/main/java/org/whispersystems/textsecuregcm/workers/ProcessPushNotificationFeedbackCommand.java +++ b/service/src/main/java/org/whispersystems/textsecuregcm/workers/ProcessPushNotificationFeedbackCommand.java @@ -28,7 +28,7 @@ public class ProcessPushNotificationFeedbackCommand extends AbstractSinglePassCr private final Clock clock; @VisibleForTesting - static final Duration MAX_TOKEN_REFRESH_DELAY = Duration.ofDays(3); + static final Duration MAX_TOKEN_REFRESH_DELAY = Duration.ofDays(14); @VisibleForTesting static final String DRY_RUN_ARGUMENT = "dry-run";