From 0f2e59f4f171ec84ba73f99d2ba69576ce3baa6f Mon Sep 17 00:00:00 2001 From: "Olivier Wilkinson (reivilibre)" Date: Fri, 30 Aug 2019 15:11:03 +0100 Subject: Fix that became apparent after unit testing Signed-off-by: Olivier Wilkinson (reivilibre) --- synapse/storage/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py index 4925f5b62b..adb66a1340 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py @@ -195,7 +195,7 @@ class StatsStore(StateDeltasStore): "table": table, "id_col": id_col, "origin_table": origin_table, - "zero_cols": zero_cols, + "zero_cols": ", ".join(zero_cols), "zeroes": ", ".join(["0"] * len(zero_cols)), } ) -- cgit 1.5.1