Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Half the batch size to trickle more quickly
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Sep 18, 2024
1 parent 7662b99 commit 52c2436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SlidingSyncManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export class SlidingSyncManager {
public async setup(client: MatrixClient): Promise<SlidingSync | undefined> {
const slidingSync = this.configure(client, client.baseUrl);
logger.info("Simplified Sliding Sync activated at", client.baseUrl);
this.startSpidering(slidingSync, 100, 50); // 100 rooms at a time, 50ms apart
this.startSpidering(slidingSync, 50, 50); // 50 rooms at a time, 50ms apart
return slidingSync;
}

Expand Down

0 comments on commit 52c2436

Please sign in to comment.