fix: clearInbox request timeout after 10s

pull/3206/head
Audric Ackermann 7 months ago
parent 95f2f42243
commit 6c617de892
No known key found for this signature in database

@ -8,6 +8,7 @@ import {
sogsBatchSend,
} from './sogsV3BatchPoll';
import { OpenGroupRequestCommonType } from '../../../../data/types';
import { PromiseUtils } from '../../../utils';
type OpenGroupClearInboxResponse = {
deleted: number;
@ -31,12 +32,17 @@ export const clearInbox = async (roomInfos: OpenGroupRequestCommonType): Promise
},
];
const result = await sogsBatchSend(
roomInfos.serverUrl,
new Set([roomInfos.roomId]),
new AbortController().signal,
options,
'batch'
const abortSignal = new AbortController();
const result = await PromiseUtils.timeout(
sogsBatchSend(
roomInfos.serverUrl,
new Set([roomInfos.roomId]),
abortSignal.signal,
options,
'batch'
),
10000
);
if (!result) {

@ -150,7 +150,7 @@ const forceNetworkDeletion = async (): Promise<Array<string> | null> => {
}
},
{
retries: 3,
retries: 1,
minTimeout: SnodeAPI.TEST_getMinTimeout(),
onFailedAttempt: e => {
window?.log?.warn(

Loading…
Cancel
Save