diff options
author | Tim Leung <tim95@hotmail.co.uk> | 2021-01-14 11:59:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 06:59:26 -0500 |
commit | 12702be951de37b0166827ef5f4ccf630a2a59c4 (patch) | |
tree | 36066e584221f13d8de8c7477772625e975918e7 /changelog.d | |
parent | Add a test for UI-Auth-via-SSO (#9082) (diff) | |
download | synapse-12702be951de37b0166827ef5f4ccf630a2a59c4.tar.xz |
Fix wrong arguments being passed to BlacklistingAgentWrapper (#9098)
A reactor was being passed instead of a whitelist for the BlacklistingAgentWrapper used by the WellyKnownResolver. This coulld cause exceptions when attempting to connect to IP addresses that are blacklisted, but in reality this did not have any observable affect since this code is not used for IP literals.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/9098.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9098.misc b/changelog.d/9098.misc new file mode 100644 index 0000000000..907020d428 --- /dev/null +++ b/changelog.d/9098.misc @@ -0,0 +1 @@ +Fix the wrong arguments being passed to `BlacklistingAgentWrapper` from `MatrixFederationAgent`. Contributed by Timothy Leung. |