- Jul 26, 2018
-
-
Travis Ralston authored
It's still not used, however the parameter is an event ID not a transaction ID.
-
Richard van der Hoff authored
Fix some looping_call calls which were broken in #3604
-
Richard van der Hoff authored
-
Richard van der Hoff authored
It turns out that looping_call does check the deferred returned by its callback, and (at least in the case of client_ips), we were relying on this, and I broke it in #3604. Update run_as_background_process to return the deferred, and make sure we return it to clock.looping_call.
-
- Jul 25, 2018
-
-
Matthew Hodgson authored
Implement the lazy_load_members room state filter parameter
-
Matthew Hodgson authored
-
Travis Ralston authored
Fix a minor documentation typo in on_make_leave
-
Travis Ralston authored
-
Travis Ralston authored
-
Matthew Hodgson authored
-
Matthew Hodgson authored
-
Matthew Hodgson authored
-
Matthew Hodgson authored
-
Erik Johnston authored
Correctly handle outliers during persist events
-
Richard van der Hoff authored
Fix another logcontext leak in _persist_events
-
Richard van der Hoff authored
Fix occasional 'tuple index out of range' error
-
Richard van der Hoff authored
Fix updating of cached remote profiles
-
Richard van der Hoff authored
Wrap a number of things that run in the background
-
Erik Johnston authored
-
Richard van der Hoff authored
This fixes a bug in _delete_existing_rows_txn which was introduced in #3435 (though it's been on matrix-org-hotfixes for *years*). This code is only called when there is some sort of conflict the first time we try to persist an event, so it only happens rarely. Still, the exceptions are annoying.
-
Richard van der Hoff authored
We need to run the errback in the sentinel context to avoid losing our own context. Also: add logging to runInteraction to help identify where "Starting db connection from sentinel context" warnings are coming from
-
Richard van der Hoff authored
-
Richard van der Hoff authored
_update_remote_profile_cache was missing its `defer.inlineCallbacks`, so when it was called, would just return a generator object, without actually running any of the method body.
-
Richard van der Hoff authored
on_notifier_poke no longer runs synchonously, so we have to do a different hack to make sure that the replication data has been sent. Let's actually listen for its arrival.
-
Erik Johnston authored
-
Richard van der Hoff authored
-
Richard van der Hoff authored
This will reduce the number of "Starting db connection from sentinel context" warnings, and will help with our metrics.
-
Erik Johnston authored
-
Erik Johnston authored
We incorrectly asserted that all contexts must have a non None state group without consider outliers. This would usually be fine as the assertion would never be hit, as there is a shortcut during persistence if the forward extremities don't change. However, if the outlier is being persisted with non-outlier events, the function would be called and the assertion would be hit. Fixes #3601
-
- Jul 24, 2018
-
-
Matthew Hodgson authored
-
Erik Johnston authored
Fix client_reader worker being able to handle /context requests
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
This allows us to handle /context/ requests on the client_reader worker without having to pull in all the various stream handlers (e.g. precence, typing, pushers etc). The only thing the token gets used for is pagination, and that ignores everything but the room portion of the token.
-
Erik Johnston authored
-
Erik Johnston authored
Use deltas to calculate current state deltas
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
-
Erik Johnston authored
-