summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@atlas.cz>2022-05-19 16:23:59 +0200
committerGitHub <noreply@github.com>2022-05-19 14:23:59 +0000
commit684feeaf2f32d853b02951794789830e48e75a64 (patch)
treed20add5644031be0dd81bb18cbd483ba79928d72 /synapse
parentAdd a unique index to `state_group_edges` to prevent duplicates being acciden... (diff)
downloadsynapse-684feeaf2f32d853b02951794789830e48e75a64.tar.xz
Properly close providers.json file stream. (#12794)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/oembed.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/config/oembed.py b/synapse/config/oembed.py

index 690ffb5296..e9edea0731 100644 --- a/synapse/config/oembed.py +++ b/synapse/config/oembed.py
@@ -57,9 +57,9 @@ class OembedConfig(Config): """ # Whether to use the packaged providers.json file. if not oembed_config.get("disable_default_providers") or False: - providers = json.load( - pkg_resources.resource_stream("synapse", "res/providers.json") - ) + with pkg_resources.resource_stream("synapse", "res/providers.json") as s: + providers = json.load(s) + yield from self._parse_and_validate_provider( providers, config_path=("oembed",) )