summary refs log tree commit diff
path: root/synapse/storage/transactions.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-26Refactor get_user_ids_changed to pull less from DBErik Johnston3-28/+57
When a client asks for users whose devices have changed since a token we used to pull *all* users from the database since the token, which could easily be thousands of rows for old tokens. This PR changes this to only check for changes for users the client is actually interested in. Fixes #5553
2019-06-26Remove & changelog (#5548)Amber Brown2-54/+1
2019-06-25Prevent multiple upgrades on the same room at once (#5051)Andrew Morgan3-52/+91
Closes #4583 Does slightly less than #5045, which prevented a room from being upgraded multiple times, one after another. This PR still allows that, but just prevents two from happening at the same time. Mostly just to mitigate the fact that servers are slow and it can take a moment for the room upgrade to actually complete. We don't want people sending another request to upgrade the room when really they just thought the first didn't go through.
2019-06-25Fix broken link in MSC1711 FAQRichard van der Hoff1-1/+1
2019-06-25Add extremities graphs to grafana dashboardRichard van der Hoff1-23/+832
2019-06-25format json for grafana dashboardRichard van der Hoff1-1/+6005
2019-06-25Increase default log level for docker image to INFO. (#5547)Richard van der Hoff2-5/+3
Fixes #3370.
2019-06-25Update docker image to use Python 3.7. (#5546)Richard van der Hoff3-3/+4
Python 3.7 is apparently faster than 3.6, and should be mature enough.
2019-06-24Update changelog to better expain password reset change (#5545)