diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-01 11:09:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 11:09:12 +0100 |
commit | c1ef579b63a39d8d6fb31ddc1d3cf173eaf7e5b7 (patch) | |
tree | bbdc9609da24ff3313d7415ed88bef045e0b0876 /synapse/config/_util.py | |
parent | Make token serializing/deserializing async (#8427) (diff) | |
download | synapse-c1ef579b63a39d8d6fb31ddc1d3cf173eaf7e5b7.tar.xz |
Add prometheus metrics to track federation delays (#8430)
Add a pair of federation metrics to track the delays in sending PDUs to/from particular servers.
Diffstat (limited to 'synapse/config/_util.py')
-rw-r--r-- | synapse/config/_util.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/config/_util.py b/synapse/config/_util.py index cd31b1c3c9..c74969a977 100644 --- a/synapse/config/_util.py +++ b/synapse/config/_util.py @@ -12,7 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -from typing import Any, List +from typing import Any, Iterable import jsonschema @@ -20,7 +20,9 @@ from synapse.config._base import ConfigError from synapse.types import JsonDict -def validate_config(json_schema: JsonDict, config: Any, config_path: List[str]) -> None: +def validate_config( + json_schema: JsonDict, config: Any, config_path: Iterable[str] +) -> None: """Validates a config setting against a JsonSchema definition This can be used to validate a section of the config file against a schema |