mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
increase initialSyncLimit enormously to avoid slow gappy /syncs for now
This commit is contained in:
parent
f2dc1e835b
commit
7cc5925ec4
1 changed files with 3 additions and 1 deletions
|
@ -522,7 +522,9 @@ module.exports = React.createClass({
|
|||
UserActivity.start();
|
||||
Presence.start();
|
||||
cli.startClient({
|
||||
pendingEventOrdering: "end"
|
||||
pendingEventOrdering: "end",
|
||||
// deliberately huge limit for now to avoid hitting gappy /sync's until gappy /sync performance improves
|
||||
initialSyncLimit: 250,
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue