summary refs log tree commit diff
path: root/scripts-dev/tail-synapse.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-11Clean up some code in the retry logic (#6017)Richard van der Hoff3-36/+14
* remove some unused code * make things which were constants into constants for efficiency and clarity
2019-09-11Update sample configErik Johnston1-1/+1
2019-09-11Add note about extra arg to send_membership_event, remove arg in ↵Andrew Morgan2-10/+3
remote_reject_invite (#6009) Some small fixes to `room_member.py` found while doing other PRs. 1. Add requester to the base `_remote_reject_invite` method. 2. `send_membership_event`'s docstring was out of date and took in a `remote_room_hosts` arg that was not used and no calling function provided.
2019-09-11Check dependencies on setup in the nicer way. (#5989)Jorik Schellekens4-28/+20
2019-09-11Fix commentsErik Johnston4-5/+5
Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
2019-09-11Fix existing v2 identity server calls (MSC2140) (#6013)Andrew Morgan2-2/+27
Two things I missed while implementing [MSC2140](https://github.com/matrix-org/matrix-doc/pull/2140/files#diff-c03a26de5ac40fb532de19cb7fc2aaf7R80). 1. Access tokens should be provided to the identity server as `access_token`, not `id_access_token`, even though the homeserver may accept the tokens as `id_access_token`. 2. Access tokens must be sent to the identity server in a query parameter, the JSON body is not allowed. We now send the access token as part of an `Authorization: ...` header, which fixes both things. The breaking code was added in https://github.com/matrix-org/synapse/pull/5892 Sytest PR: https://github.com/matrix-org/sytest/pull/697
2019-09-11Add test for admin redaction ratelimiting.Erik Johnston1-0/+25
2019-09-11Fix how we check for self redactionErik Johnston1-4/+18
2019-09-11