1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

increase initialSyncLimit enormously to avoid slow gappy /syncs for now

This commit is contained in:
Matthew Hodgson
2016-01-15 13:28:41 +00:00
parent f2dc1e835b
commit 7cc5925ec4

View File

@@ -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,
});
},