Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-04-05 | Don't immediately notify the master about users whose syncs have gone away | Erik Johnston | 1 | -4/+36 | |
2017-04-04 | Add comment | Erik Johnston | 1 | -0/+5 | |
2017-04-04 | Deduplicate new deviceinbox rows for replication | Erik Johnston | 1 | -4/+7 | |
2017-04-04 | Add the appropriate amount of preserve_fn | Erik Johnston | 4 | -17/+19 | |
2017-04-04 | Fiddle tcp replication logging | Erik Johnston | 1 | -2/+2 | |
2017-04-04 | Advance replication streams even if nothing is listening | Erik Johnston | 3 | -6/+15 | |
Otherwise the streams don't advance and steadily fall behind, so when a worker does connect either a) they'll be streamed lots of old updates or b) the connection will fail as the streams are too far behind. | |||||
2017-04-04 | Remove unused worker config option | Erik Johnston | 1 | -1/+0 | |
2017-04-04 | Shuffle and comment synchrotron presence | Erik Johnston | 1 | -9/+11 | |
2017-04-04 | Move where we ack federation | Erik Johnston | 1 | -7/+16 | |
2017-04-03 | Accept join events from all servers | Richard van der Hoff | 2 | -5/+19 | |
Make sure that we accept join events from any server, rather than just the origin server, to make the federation join dance work correctly. (Fixes #1893). | |||||
2017-04-03 | Remove spurious yield | Richard van der Hoff | 1 | -1/+1 | |
In `MessageHandler`, remove `yield` on call to `Notifier.on_new_room_event`: it doesn't return anything anyway. | |||||
2017-04-03 | Remove more spurious `PreserveLoggingContext`s | Richard van der Hoff | 1 | -24/+19 | |
Remove `PreserveLoggingContext` around calls to `Notifier.on_new_room_event`; there is no problem if the logcontext is set when calling it. | |||||
2017-04-03 | Remove spurious PreserveLoggingContext | Richard van der Hoff | 1 | -6/+5 | |
In `on_new_room_event`, remove `PreserveLoggingContext` - we can call its subroutines with the logcontext set. | |||||
2017-04-03 | preserve_fn some deferred-returning things | Richard van der Hoff | 1 | -2/+5 | |
In `Notifier._on_new_room_event`, `preserve_fn` around its subroutines which return deferreds, so that it is safe to call it with an active logcontext. | |||||
2017-04-03 | Fix fixme in preserve_fn | Richard van der Hoff | 1 | -5/+1 | |
`preserve_fn` is no longer used as a decorator anywhere, so we can safely fix a fixme therein. | |||||
2017-04-03 | Update all the workers and master to use TCP replication | Erik Johnston | 9 | -401/+259 | |
2017-04-03 | Change slave storage to use new replication interface | Erik Johnston | 11 | -179/+128 | |
As the TCP replication uses a slightly different API and streams than the HTTP replication. This breaks HT |