mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Merge pull request #3996 from matrix-org/erikj/fix_bg_iteration
Fix exception in background metrics collection
This commit is contained in:
commit
81e2813948
1
changelog.d/3996.bugfix
Normal file
1
changelog.d/3996.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix exception in background metrics collection
|
@ -101,9 +101,13 @@ class _Collector(object):
|
|||||||
labels=["name"],
|
labels=["name"],
|
||||||
)
|
)
|
||||||
|
|
||||||
# We copy the dict so that it doesn't change from underneath us
|
# We copy the dict so that it doesn't change from underneath us.
|
||||||
|
# We also copy the process lists as that can also change
|
||||||
with _bg_metrics_lock:
|
with _bg_metrics_lock:
|
||||||
_background_processes_copy = dict(_background_processes)
|
_background_processes_copy = {
|
||||||
|
k: list(v)
|
||||||
|
for k, v in six.iteritems(_background_processes)
|
||||||
|
}
|
||||||
|
|
||||||
for desc, processes in six.iteritems(_background_processes_copy):
|
for desc, processes in six.iteritems(_background_processes_copy):
|
||||||
background_process_in_flight_count.add_metric(
|
background_process_in_flight_count.add_metric(
|
||||||
|
Loading…
Reference in New Issue
Block a user