diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2022-11-28 15:25:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 15:25:18 +0000 |
commit | d56f48038a07fd76d2ce08220a4061f85006bf3b (patch) | |
tree | cb822fd2d0199e12aa53176613efa27dd4c5d8e8 /synapse | |
parent | Include thread information when sending receipts over federation. (#14466) (diff) | |
download | synapse-d56f48038a07fd76d2ce08220a4061f85006bf3b.tar.xz |
Fix logging context warnings due to common usage metrics setup (#14574)
`setup()` is run under the sentinel context manager, so we wrap the initial update in a background process. Before this change, Synapse would log two warnings on startup: Starting db txn 'count_daily_users' from sentinel context Starting db connection from sentinel context: metrics will be lost Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/metrics/common_usage_metrics.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/metrics/common_usage_metrics.py b/synapse/metrics/common_usage_metrics.py index 0a22ea3d92..6e05b043d3 100644 --- a/synapse/metrics/common_usage_metrics.py +++ b/synapse/metrics/common_usage_metrics.py @@ -54,7 +54,9 @@ class CommonUsageMetricsManager: async def setup(self) -> None: """Keep the gauges for common usage metrics up to date.""" - await self._update_gauges() + run_as_background_process( + desc="common_usage_metrics_update_gauges", func=self._update_gauges + ) self._clock.looping_call( run_as_background_process, 5 * 60 * 1000, |