Default the retry receipt flag to true.

This commit is contained in:
Greyson Parrelli 2021-09-01 10:35:41 -04:00
parent 7ac83625d3
commit 7447e2497b

View file

@ -359,7 +359,7 @@ public final class FeatureFlags {
/** Whether or not sending or responding to retry receipts is enabled. */
public static boolean retryReceipts() {
return getBoolean(RETRY_RECEIPTS, false);
return getBoolean(RETRY_RECEIPTS, true);
}
/** How long to wait before considering a retry to be a failure. */