don't drop events if we receive more than 8 in one batch
This commit is contained in:
parent
0bd8800402
commit
0da4dd2dd6
1 changed files with 5 additions and 1 deletions
|
@ -51,7 +51,11 @@ export class ConferenceCallManager extends EventEmitter {
|
||||||
|
|
||||||
const manager = new ConferenceCallManager(client);
|
const manager = new ConferenceCallManager(client);
|
||||||
|
|
||||||
await client.startClient();
|
await client.startClient({
|
||||||
|
// dirty hack to reduce chance of gappy syncs
|
||||||
|
// should be fixed by spotting gaps and backpaginating
|
||||||
|
initialSyncLimit: 50,
|
||||||
|
});
|
||||||
|
|
||||||
await waitForSync(client);
|
await waitForSync(client);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue