diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-30 15:11:03 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-30 15:11:03 +0100 |
commit | 0f2e59f4f171ec84ba73f99d2ba69576ce3baa6f (patch) | |
tree | 2838a671f514b769baff3e509ce045ad6fc1ae90 /synapse | |
parent | Code formatting and typo pointed out by Erik. (diff) | |
download | synapse-0f2e59f4f171ec84ba73f99d2ba69576ce3baa6f.tar.xz |
Fix that became apparent after unit testing
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
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)), } ) |