Message Send Log: Increase retention length
This commit is contained in:
parent
12d2b1bf7c
commit
5069f48cf0
4 changed files with 26 additions and 11 deletions
|
@ -56,8 +56,8 @@ export async function onRetryRequest(event: RetryRequestEvent): Promise<void> {
|
|||
}
|
||||
|
||||
const HOUR = 60 * 60 * 1000;
|
||||
const ONE_DAY = 24 * HOUR;
|
||||
let retryRespondMaxAge = ONE_DAY;
|
||||
const DAY = 24 * HOUR;
|
||||
let retryRespondMaxAge = 14 * DAY;
|
||||
try {
|
||||
retryRespondMaxAge = parseIntOrThrow(
|
||||
RemoteConfig.getValue('desktop.retryRespondMaxAge'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue