- Mar 24, 2017
-
-
Richard van der Hoff authored
try not to drop context after federation requests
-
Richard van der Hoff authored
Add another missing yield on check_device_registered
-
Erik Johnston authored
Reduce some CPU work on DB threads
-
Erik Johnston authored
cursor_to_dict can be surprisinglh expensive for large result sets, so lets only call it when we need to.
-
Erik Johnston authored
-
David Baker authored
Fix token request for addition of phone numbers
-
David Baker authored
Fix rejection of invites not reaching sync
-
- Mar 23, 2017
-
-
Richard van der Hoff authored
preserve_context_over_fn uses a ContextPreservingDeferred, which only restores context for the duration of its callbacks, which isn't really correct, and means that subsequent operations in the same request can end up without their logcontexts.
-
Richard van der Hoff authored
push federation retry limiter down to matrixfederationclient
-
Richard van der Hoff authored
Fix time_bound_deferred to throw the right exception
-
Richard van der Hoff authored
-
David Baker authored
Always allow the user to see their own leave events, otherwise they won't see the event if they reject an invite for a room whose history visibility is set such that they cannot see events before joining.
-
David Baker authored
-
David Baker authored
-
Erik Johnston authored
This prevents unnecessary construction of lists
-
Erik Johnston authored
JSONSchema Validation For Filters
-
pik authored
Signed-off-by:
pik <alexander.maznev@gmail.com>
-
pik authored
* use a valid filter in rest/client/v2_alpha test Signed-off-by:
pik <alexander.maznev@gmail.com>
-
pik authored
Signed-off-by:
pik <alexander.maznev@gmail.com>
-
pik authored
* add invalid filter tests Signed-off-by:
pik <alexander.maznev@gmail.com>
-
Richard van der Hoff authored
-
Richard van der Hoff authored
Add a param to the federation client which lets us ignore historical backoff data for federation queries, and set it for a handful of operations.
-
Richard van der Hoff authored
Due to a failure to instantiate DeferredTimedOutError, time_bound_deferred would throw a CancelledError when the deferred timed out, which was rather confusing.
-
Richard van der Hoff authored
Update README: specify python2.7 in virtualenv
-
Richard van der Hoff authored
Add a missing yield in device key upload
-
Richard van der Hoff authored
Fix a couple of logcontext leaks
-
Richard van der Hoff authored
rather than having to instrument everywhere we make a federation call, make the MatrixFederationHttpClient manage the retry limiter.
-
Richard van der Hoff authored
rename _create_request to _request, and push ascii-encoding of `destination` and `path` down into it
-
Richard van der Hoff authored
Use preserve_fn to correctly manage the logcontexts around things we don't want to yield on.
-
Richard van der Hoff authored
(this would only very very rarely actually be a useful thing, so the main problem was the logcontext leak...)
-
- Mar 22, 2017
-
-
Richard van der Hoff authored
fix up some key verif docstrings
-
Richard van der Hoff authored
Fix caching of remote servers' signature keys
-
Richard van der Hoff authored
The `@cached` decorator on `KeyStore._get_server_verify_key` was missing its `num_args` parameter, which meant that it was returning the wrong key for any server which had more than one recorded key. By way of a fix, change the default for `num_args` to be *all* arguments. To implement that, factor out a common base class for `CacheDescriptor` and `CacheListDescriptor`.
-
- Mar 21, 2017
-
-
Matthew Hodgson authored
-
Richard van der Hoff authored
-
Erik Johnston authored
Don't send the full event json over replication
-
Richard van der Hoff authored
Add some debug to help diagnose weird federation issue
-
- Mar 20, 2017
-
-
Erik Johnston authored
-
Richard van der Hoff authored