| Commit message (Collapse) | Author | Files | Lines |
|
This currently causes presence notify code to log exceptions when there
is no state changes to process. This doesn't actually cause any problems
as we'd simply do nothing anyway.
|
|
I'm not really sure how this was going wrong, but this seems like the
right approach anyway.
|
|
|
|
Fix #6910
|
|
|
|
Support for getting TLS certificates through ACMEv1 ended on November 2019.
Signed-off-by: Uday Bansal <43824981+udaybansal19@users.noreply.github.com>
|
|
Signed-off-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
|
|
|
|
Fix #6910
|
|
Instead lets just warn if the worker has a media listener configured but
has the media repository disabled.
Previously non media repository workers would just ignore the media
listener.
|
|
to stop the federationhandler trying to do master stuff
|
|
Signed-off-by: James Hebden <james@ec0.io>
|
|
I cracked, and added some type definitions in synapse.storage.
|
|
When we get an invite over federation, store the room version in the rooms table.
The general idea here is that, when we pull the invite out again, we'll want to know what room_version it belongs to (so that we can later redact it if need be). So we need to store it somewhere...
|
|
Properly convert a coroutine into a Deferred in federation_base to fix an error when joining a room.
|
|
|
|
Signed-off-by: Uday Bansal <43824981+udaybansal19@users.noreply.github.com>
|
|
handling of call to deactivate user (#6990)
|
|
Some of the database deltas rely on `config.server_name` being set correctly,
so we should check that it is before running the deltas.
Fixes #6870.
|
|
|
|
I made a mistake in https://github.com/matrix-org/synapse/pull/6921 - the quotes break the postgres container's startup script (or docker-compose), which makes initdb fail: https://github.com/matrix-org/synapse/pull/6921#issuecomment-590657154
Signed-off-by: Fridtjof Mund <fridtjof@das-labor.org>
|
|
`_process_received_pdu` is only called by `on_receive_pdu`, which ignores any
events for unknown rooms, so this is redundant.
|
|
This is intended as a precursor to storing room versions when we receive an
invite over federation, but has the happy side-effect of fixing #3374 at last.
In short: change the store_room with try/except to a proper upsert which
updates the right |