Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-03-30 | Use txn.fetchall() so we can reuse txn | Erik Johnston | 1 | -1/+1 | |
2017-03-29 | synctl.py: wait for synapse to stop before restarting (#2020) | Anant Prakash | 1 | -4/+43 | |
2017-03-29 | Increase cache size for _get_state_group_for_event | Erik Johnston | 1 | -1/+1 | |
2017-03-29 | Bail early if remote wouldn't be retried (#2064) | Erik Johnston | 1 | -2/+8 | |
* Bail early if remote wouldn't be retried * Don't always return true * Just use get_retry_limiter * Spelling | |||||
2017-03-29 | Decrank last commit | Erik Johnston | 1 | -4/+5 | |
2017-03-29 | Correctly look up key | Erik Johnston | 1 | -6/+5 | |
2017-03-28 | The algorithm is part of the key id | Erik Johnston | 1 | -4/+4 | |
2017-03-27 | Typo | Erik Johnston | 1 | -1/+1 | |
2017-03-27 | Short circuit if all new events have same state group | Erik Johnston | 1 | -36/+51 | |
2017-03-27 | Notify on new federation traffic | Erik Johnston | 1 | -0/+7 | |
2017-03-24 | Batch sending of device list pokes | Erik Johnston | 2 | -0/+5 | |
2017-03-24 | Actually call invalidate | Erik Johnston | 1 | -1/+1 | |
2017-03-24 | Use presence replication stream to invalidate cache | Erik Johnston | 2 | -2/+3 | |
Instead of using the cache invalidation replication stream to invalidate the _get_presence_cache, we can instead rely on the presence replication stream. This reduces the amount of replication traffic considerably. | |||||
2017-03-24 | Add slave transaction store | Erik Johnston | 2 | -0/+4 | |
2017-03-24 | Cache hosts in room | Erik Johnston | 2 | -2/+11 | |
2017-03-24 | Replace some calls to cursor_to_dict | Erik Johnston | 3 | -39/+13 | |
cursor_to_dict can be surprisinglh expensive for large result sets, so lets only call it when we need to. | |||||
2017-03-24 | Use iter(items|values) | Erik Johnston | 3 | -51/+48 | |
2017-03-23 | try not to drop context after federation requests | Richard van der Hoff | 1 | -12/+16 | |
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. | |||||
2017-03-23 | Add another missing yield on check_device_registered | Richard van der Hoff | 1 | -1/+1 | |
2017-03-23 | Fix rejection of invites not reaching sync | David Baker | 1 | -0/+7 | |
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. | |||||
2017-03-23 | Oops, remove unintentional change | David Baker | 1 | -7/+0 | |
2017-03-23 | Fix token request for addition of phone numbers | David Baker | 2 | -1/+8 | |
2017-03-23 | User Cursor.__iter__ instead of fetchall | Erik Johnston | 16 | -41/+40 | |
This prevents unnecessary construction of lists | |||||
2017-03-23 | Add jsonschema to python_dependencies.py | pik | 1 | -0/+1 | |
Signed-off-by: pik <alexander.maznev@gmail.com> | |||||
2017-03-23 | use jsonschema.FormatChecker for RoomID and UserID strings | pik | 3 | -24/+40 | |
* use a valid filter in rest/client/v2_alpha test Signed-off-by: pik <alexander.maznev@gmail.com> | |||||
2017-03-23 | Add valid filter tests, flake8, fix typo | pik | 2 | -10/+55 | |
Signed-off-by: pik <alexander.maznev@gmail.com> | |||||
2017-03-23 | check_valid_filter using JSONSchema | pik | 2 | -94/+175 | |
* add invalid filter tests Signed-off-by: pik <alexander.maznev@gmail.com> | |||||
2017-03-23 | Raise a more helpful exception | Erik Johnston | 1 | -2/+4 | |
2017-03-23 | fix tests | Richard van der Hoff | 2 | -1/+3 | |
2017-03-23 | Don't user upsert to persist new one time keys | Erik Johnston | 1 | -9/+48 | |
Instead we no-op duplicate one time key uploads, an error if the key_id already exists but encodes a different key. | |||||
2017-03-23 | Ignore backoff history for invites, aliases, and roomdirs | Richard van der Hoff | 6 | -14/+52 | |
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. | |||||
2017-03-23 | Fix time_bound_deferred to throw the right exception | Richard van der Hoff | 2 | -4/+39 | |
Due to a failure to instantiate DeferredTimedOutError, time_bound_deferred would throw a CancelledError when the deferred timed out, which was rather confusing. | |||||
2017-03-23 | push federation retry limiter down to matrixfederationclient | Richard van der Hoff | 8 | -287/+280 | |
rather than having to instrument everywhere we make a federation call, make the MatrixFederationHttpClient manage the retry limiter. | |||||
2017-03-23 | MatrixFederationHttpClient: clean up | Richard van der Hoff | 1 | -17/+24 | |
rename _create_request to _request, and push ascii-encoding of `destination` and `path` down into it | |||||
2017-03-23 | Fix a couple of logcontext leaks | Richard van der Hoff | 2 | -5/+5 | |
Use preserve_fn to correctly manage the logcontexts around things we don't want to yield on. | |||||
2017-03-23 | Add a missing yield in device key upload | Richard van der Hoff | 1 | -1/+1 | |
(this would only very very rarely actually be a useful thing, so the main problem was the logcontext leak...) | |||||
2017-03-22 | Removed requirement that is not needed | Richard Kellner | 1 | -1/+1 | |
I have removed libsodium from CentOS system requirements, as it is part PyNaCl. Signed-off-by: Richard Kellner <richard.kellner@gmail.com> | |||||
2017-03-22 | Fix caching of remote servers' signature keys | Richard van der Hoff | 4 | -63/+225 | |
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`. | |||||
2017-03-21 | fix up some key verif docstrings | Richard van der Hoff | 2 | -4/+24 | |
2017-03-20 | Updated user creation section | Richard Kellner | 1 | -0/+1 | |
register_new_matrix_user command has one more question, I have updated the documentation to match the reality. | |||||
2017-03-20 | Added missing system requiremnt and pip upgrade before install | Richard Kellner | 1 | -1/+2 | |
When installing on CentOS7 I wans't able to follow README instructions to install due to errors. I was missing libsodium in order to compile python dependencies. Default version of Python pip is really old and therefore setuptools upgrade ended with error as well. In order to be able to continue I needed to upgrade pip as well. | |||||
2017-03-20 | Bump changelog and version github/release-v0.19.3 release-v0.19.3 | Erik Johnston | 2 | -1/+7 | |
2017-03-20 | Add some debug to help diagnose weird federation issue | Richard van der Hoff | 1 | -1/+8 | |
2017-03-20 | Fix unit test | Erik Johnston | 1 | -1/+1 | |
2017-03-20 | PEP8 | Erik Johnston | 2 | -3/+0 | |
2017-03-20 | log_contexts.rst: fix formatting of Note block | Richard van der Hoff | 1 | -6/+6 | |
Apparently the github RST renderer doesn't like Note blocks. | |||||
2017-03-18 | log_contexts.rst: fix typos | Richard van der Hoff | 1 | -2/+2 | |
2017-03-18 | README.md: fix link to client list on matrix.org/docs | Stefan Majewsky | 1 | -3/+3 | |
2017-03-18 | Stop preserve_fn leaking context into the reactor | Richard van der Hoff | 3 | -34/+93 | |
Fix a bug in ``logcontext.preserve_fn`` which made it leak context into the reactor, and add a test for it. Also, get rid of ``logcontext.reset_context_after_deferred``, which tried to do the same thing but had its own, different, set of bugs. | |||||
2017-03-18 | Run the reactor with the sentinel logcontext | Richard van der Hoff | 8 | -16/+51 | |
This fixes a class of 'Unexpected logcontext' messages, which were happening because the logcontext was somewhat arbitrarily swapping between the sentinel and the `run` logcontext. | |||||
2017-03-18 | Remove broken use of clock.call_later | Richard van der Hoff | 1 | -12/+3 | |
background_updates was using `call_later` in a way that leaked the logcontext into the reactor. We could have rewritten it to do it properly, but given that we weren't using the fancier facilities provided by `call_later`, we might as well just use `async.sleep`, which does the logcontext stuff properly. | |||||
2017-03-17 | Logcontext docs | Richard van der Hoff | 2 | -8/+449 | |
2017-03-17 | Don't send the full event json over replication | Erik Johnston | 4 | -50/+38 | |
2017-03-17 | Avoid resetting state on rejected events | Richard van der Hoff | 2 | -4/+14 | |
When we get a rejected event, give it the same state_group as its prev_event, rather than no state_group at all. This should fix https://github.com/matrix-org/synapse/issues/1935. | |||||
2017-03-17 | Refactoring and cleanups | Richard van der Hoff | 5 | -80/+264 | |
A few non-functional changes: * A bunch of docstrings to document types * Split `EventsStore._persist_events_txn` up a bit. Hopefully it's a bit more readable. * Rephrase `EventFederationStore._update_min_depth_for_room_txn` to avoid mind-bending conditional. * Rephrase rejected/outlier conditional in `_update_outliers_txn` to avoid mind-bending conditional. | |||||
2017-03-16 | Update README: specify python2.7 in virtualenv | Keyvan Fatehi | 1 | -1/+1 | |
Signed-off-by: Keyvan Fatehi <keyvanfatehi@gmail.com> | |||||
2017-03-16 | Comments | Erik Johnston | 2 | -2/+4 | |
2017-03-16 | Comment | Erik Johnston | 1 | -3/+8 | |
2017-03-16 | Don't recreate so many sets | Erik Johnston | 10 | -51/+42 | |
2017-03-16 | Implement no op for room stream in sync | Erik Johnston | 1 | -4/+47 | |
2017-03-15 | Queue up federation PDUs while a room join is in progress | Richard van der Hoff | 1 | -24/+44 | |
This just takes the existing `room_queues` logic and moves it out to `on_receive_pdu` instead of `_process_received_pdu`, which ensures that we don't start trying to fetch prev_events and whathaveyou until the join has completed. | |||||
2017-03-15 | Comment | Erik Johnston | 1 | -1/+3 | |
2017-03-15 | Modify test_user_sync so it doesn't look at last_active_ts over ↵ | Will Hunt | 1 | -1/+1 | |
last_user_sync_ts | |||||
2017-03-15 | Cache set of users whose presence the other user should see | Erik Johnston | 1 | -13/+27 | |
2017-03-15 | Add a great comment to handle_timeout for active vs sync times. | Will Hunt | 1 | -0/+2 | |
2017-03-15 | Add fallback to last_active_ts if it beats the last sync time. | Will Hunt | 1 | -1/+2 | |
2017-03-15 | Comment | Erik Johnston | 2 | -0/+6 | |
2017-03-15 | Remove unused import | Erik Johnston | 1 | -1/+0 | |
2017-03-15 | Format presence events on the edges instead of reformatting them multiple times | Erik Johnston | 7 | -39/+80 | |
2017-03-15 | Fix assertion to stop transaction queue getting wedged | Richard van der Hoff | 6 | -5/+29 | |
... and update some docstrings to correctly reflect the types being used. get_new_device_msgs_for_remote can return a long under some circumstances, which was being stored in last_device_list_stream_id_by_dest, and was then upsetting things on the next loop. | |||||
2017-03-15 | Add some metrics on notifier | Erik Johnston | 1 | -0/+6 | |
2017-03-15 | Implement reset_context_after_deferred | Richard van der Hoff | 1 | -0/+25 | |
to correctly reset the context when we fire off a deferred we aren't going to wait for. | |||||
2017-03-14 | Reduce spurious calls to generate sync | Erik Johnston | 1 | -13/+31 | |
2017-03-14 | Address review comments | Richard van der Hoff | 2 | -20/+31 | |
- don't blindly proxy all HTTPRequestExceptions - log unexpected exceptions at error - avoid `isinstance` - improve docs on `from_http_response_exception` | |||||
2017-03-14 | re-refactor exception heirarchy | Richard van der Hoff | 1 | -16/+14 | |
Give CodeMessageException back its `msg` attribute, and use that to hold the HTTP status message for HttpResponseException. | |||||
2017-03-14 | Handle PartialDownloadError in CAS login | David Baker | 1 | -1/+8 | |
2017-03-14 | Fix current_state_events table to not lie | Erik Johnston | 1 | -3/+28 | |
If we try and persist two state events that have the same ancestor we calculate the wrong current state when persisting those events. | |||||
2017-03-14 | Use extend instead of += | David Baker | 1 | -4/+4 | |
2017-03-14 | Oops, remove print | David Baker | 1 | -1/+0 | |
2017-03-13 | Implement _simple_delete_many_txn, use it to delete devices | Luke Barnard | 4 | -11/+101 | |
(But this doesn't implement the same for deleting access tokens or e2e keys. Also respond to code review. | |||||
2017-03-13 | Fix registration for broken clients | David Baker | 1 | -4/+22 | |
Only offer msisdn flows if the x_show_msisdn option is given. | |||||
2017-03-13 | Support registration / login with phone number | David Baker | 9 | -50/+395 | |
Changes from https://github.com/matrix-org/synapse/pull/1971 | |||||
2017-03-13 | Flake | Luke Barnard | 1 | -0/+2 | |
2017-03-13 | Implement delete_devices API | Luke Barnard | 1 | -0/+47 | |
This implements the proposal here https://docs.google.com/document/d/1C-25Gqz3TXy2jIAoeOKxpNtmme0jI4g3yFGqv5GlAAk for deleting multiple devices at once in a single request. | |||||
2017-03-13 | Fix routing loop when fetching remote media | Richard van der Hoff | 4 | -14/+102 | |
When we proxy a media request to a remote server, add a query-param, which will tell the remote server to 404 if it doesn't recognise the server_name. This should fix a routing loop where the server keeps forwarding back to itself. Also improves the error handling on remote media fetches, so that we don't always return a rather obscure 502. | |||||
2017-03-13 | Add new storage function to slave store | Erik Johnston | 1 | -0/+4 | |
2017-03-13 | Bring example log config into line with default | Richard van der Hoff | 1 | -2/+4 | |
2017-03-13 | Add helpful texts to logger config options | Richard van der Hoff | 1 | -5/+7 | |
2017-03-13 | Comments | Erik Johnston | 1 | -0/+12 | |
2017-03-13 | Bump changelog and versions v0.19.3-rc2 | Erik Johnston | 2 | -1/+10 | |
2017-03-13 | Revert "Support registration & login with phone number" | Erik Johnston | 9 | -395/+50 | |
2017-03-13 | Assume rooms likely haven't changed | Erik Johnston | 2 | -8/+14 | |
2017-03-10 | Get current state by using current_state_events table | Erik Johnston | 5 | -31/+52 | |
2017-03-10 | Add an option to disable stdio redirect | Richard van der Hoff | 1 | -1/+12 | |
This makes it tractable to run synapse under pdb. | |||||
2017-03-10 | Refactor logger config for workers | Richard van der Hoff | 9 | -13/+26 | |
- to make it easier to add more config options. | |||||
2017-03-10 | Reread log config on SIGHUP | Richard van der Hoff | 1 | -10/+19 | |
When we are using a log_config file, reread it on SIGHUP. | |||||
2017-03-10 | Fix it for the workers | Erik Johnston | 1 | -0/+8 | |
2017-03-10 | Noop repated delete device inbox calls from /sync | Erik Johnston | 2 | -4/+38 | |
2017-03-10 | Add setdefault key to ExpiringCache | Erik Johnston | 1 | -0/+7 | |
2017-03-09 | Move FederationServer._handle_new_pdu to FederationHandler | Richard van der Hoff | 2 | -198/+198 | |
Unfortunately this significantly increases the size of the already-rather-big FederationHandler, but the code fits more naturally here, and it paves the way for the tighter integration that I need between handling incoming PDUs and doing the join dance. Other than renaming the existing `FederationHandler.on_receive_pdu` to `_process_received_pdu` to make way for it, this just consists of the move, and replacing `self.handler` with `self` and `self` with `self.replication_layer`. | |||||
2017-03-09 | Move sig check out of _handle_new_pdu | Richard van der Hoff | 1 | -12/+36 | |
When we receive PDUs via `get_missing_events`, we have already checked their sigs, so there is no need to do it again. | |||||
2017-03-09 | Factor _get_missing_events_for_pdu out of _handle_new_pdu | Richard van der Hoff | 1 | -62/+82 | |
This should be functionally identical: it just seeks to improve readability by reducing indentation. | |||||
2017-03-09 | Fix docstring | Richard van der Hoff | 1 | -2/+1 | |
2017-03-08 | Comment when our 3pids would be incomplete | David Baker | 1 | -0/+2 | |
2017-03-08 |