From 1793de6c6da6fc18fc5425dcf1818d8b007ec890 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Mon, 24 Jun 2019 11:16:13 +0100 Subject: [PATCH] black --- synapse/storage/_base.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index cbd6568c4..b862daab2 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -363,14 +363,10 @@ class SQLBaseStore(object): duration = time_now - time_then ratio = (curr - prev) / duration - top_three_counters = self._txn_perf_counters.interval( - duration, limit=3 - ) + top_three_counters = self._txn_perf_counters.interval(duration, limit=3) perf_logger.info( - "Total database time: %.3f%% {%s}", - ratio * 100, - top_three_counters, + "Total database time: %.3f%% {%s}", ratio * 100, top_three_counters ) self._clock.looping_call(loop, 10000)