Default retry respond max age to 14 days.

This commit is contained in:
Greyson Parrelli 2021-08-17 20:14:19 -04:00
parent 9a67c60b4e
commit ae30e4070c

View file

@ -367,7 +367,7 @@ public final class FeatureFlags {
/** How old a message is allowed to be while still resending in response to a retry receipt . */
public static long retryRespondMaxAge() {
return getLong(RETRY_RESPOND_MAX_AGE, TimeUnit.DAYS.toMillis(1));
return getLong(RETRY_RESPOND_MAX_AGE, TimeUnit.DAYS.toMillis(14));
}
/** Whether or not sending using sender key is enabled. */