summary refs log tree commit diff
path: root/synapse/metrics
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-05-28 19:16:09 +1000
committerAmber Brown <hawkowl@atleastfornow.net>2018-05-28 19:16:09 +1000
commit5c40ce37774a20b57fe726b9c3d880d089ed6f0c (patch)
treee289ed0a543fe99c5c3056c8b51d0de592ab0fc7 /synapse/metrics
parentadd comment about why unreg (diff)
downloadsynapse-5c40ce37774a20b57fe726b9c3d880d089ed6f0c.tar.xz
invalid syntax :(
Diffstat (limited to 'synapse/metrics')
-rw-r--r--synapse/metrics/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/metrics/__init__.py b/synapse/metrics/__init__.py
index 0c557a43f6..371c300cac 100644
--- a/synapse/metrics/__init__.py
+++ b/synapse/metrics/__init__.py
@@ -148,8 +148,7 @@ REGISTRY.register(GCCounts())
 tick_time = Histogram(
     "python_twisted_reactor_tick_time",
     "Tick time of the Twisted reactor (sec)",
-    buckets=[0.001, 0.002, 0.005, 0.001, 0.005, 0.01. 0.025, 0.05, 0.1, 0.2,
-             0.5, 1, 2, 5],
+    buckets=[0.001, 0.002, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1, 2, 5],
 )
 pending_calls_metric = Histogram(
     "python_twisted_reactor_pending_calls",