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.pull/9114/head
parent
233c8b9fce
commit
12702be951
|
@ -0,0 +1 @@
|
||||||
|
Fix the wrong arguments being passed to `BlacklistingAgentWrapper` from `MatrixFederationAgent`. Contributed by Timothy Leung.
|
|
@ -102,7 +102,6 @@ class MatrixFederationAgent:
|
||||||
pool=self._pool,
|
pool=self._pool,
|
||||||
contextFactory=tls_client_options_factory,
|
contextFactory=tls_client_options_factory,
|
||||||
),
|
),
|
||||||
self._reactor,
|
|
||||||
ip_blacklist=ip_blacklist,
|
ip_blacklist=ip_blacklist,
|
||||||
),
|
),
|
||||||
user_agent=self.user_agent,
|
user_agent=self.user_agent,
|
||||||
|
|
Loading…
Reference in New Issue