diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-02-28 16:24:01 +0000 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-02-28 16:24:01 +0000 |
commit | ac61b45a75304e90c05a5dba153900cfc0adb206 (patch) | |
tree | d0bd644c73ce1346be686cdf71fad2d4627bf0b1 /synapse/http | |
parent | Make 'event_id' a required parameter in federated state requests (#4741) (diff) | |
download | synapse-ac61b45a75304e90c05a5dba153900cfc0adb206.tar.xz |
Minor docstring fixes for MatrixFederationAgent (#4765)
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/federation/matrix_federation_agent.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/http/federation/matrix_federation_agent.py b/synapse/http/federation/matrix_federation_agent.py index 384d8a37a2..1334c630cc 100644 --- a/synapse/http/federation/matrix_federation_agent.py +++ b/synapse/http/federation/matrix_federation_agent.py @@ -68,9 +68,13 @@ class MatrixFederationAgent(object): TLS policy to use for fetching .well-known files. None to use a default (browser-like) implementation. - srv_resolver (SrvResolver|None): + _srv_resolver (SrvResolver|None): SRVResolver impl to use for looking up SRV records. None to use a default implementation. + + _well_known_cache (TTLCache|None): + TTLCache impl for storing cached well-known lookups. None to use a default + implementation. """ def __init__( |