mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-26 19:47:05 +03:00
Minor docstring fixes for MatrixFederationAgent (#4765)
This commit is contained in:
parent
b131cc77df
commit
ac61b45a75
2 changed files with 6 additions and 1 deletions
1
changelog.d/4765.misc
Normal file
1
changelog.d/4765.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Minor docstring fixes for MatrixFederationAgent.
|
|
@ -68,9 +68,13 @@ class MatrixFederationAgent(object):
|
||||||
TLS policy to use for fetching .well-known files. None to use a default
|
TLS policy to use for fetching .well-known files. None to use a default
|
||||||
(browser-like) implementation.
|
(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
|
SRVResolver impl to use for looking up SRV records. None to use a default
|
||||||
implementation.
|
implementation.
|
||||||
|
|
||||||
|
_well_known_cache (TTLCache|None):
|
||||||
|
TTLCache impl for storing cached well-known lookups. None to use a default
|
||||||
|
implementation.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
|
Loading…
Reference in a new issue