diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-23 15:31:47 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-23 16:49:21 +0100 |
commit | 748d8fdc7bcdb43719e99a48cc74bf078f22396f (patch) | |
tree | 19ea8ddc1692448cb2818ecd42b5512014e12caa /.gitignore | |
parent | Merge pull request #1136 from matrix-org/erikj/fix_signed_3pid (diff) | |
download | synapse-748d8fdc7bcdb43719e99a48cc74bf078f22396f.tar.xz |
Reduce DB hits for replication
Some streams will occaisonally advance their positions without actually having any new rows to send over federation. Currently this means that the token will not advance on the workers, leading to them repeatedly sending a slightly out of date token. This in turns requires the master to hit the DB to check if there are any new rows, rather than hitting the no op logic where we check if the given token matches the current token. This commit changes the API to always return an entry if the position for a stream has changed, allowing workers to advance their tokens correctly.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index f8c4000134..491047c352 100644 --- a/.gitignore +++ b/.gitignore @@ -24,10 +24,10 @@ homeserver*.yaml .coverage htmlcov -demo/*.db -demo/*.log -demo/*.log.* -demo/*.pid +demo/*/*.db +demo/*/*.log +demo/*/*.log.* +demo/*/*.pid demo/media_store.* demo/etc |