diff options
author | Erik Johnston <erik@matrix.org> | 2018-03-19 11:40:32 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-03-19 11:41:01 +0000 |
commit | fa728034900ae63d8132962008319d37df3993db (patch) | |
tree | 9ed8d7230c116bc28057f11395a795d3f993880c /synapse/storage/events.py | |
parent | spell out not to massively increase bcrypt rounds (diff) | |
parent | Merge branch 'hotfixes-v0.26.1' of github.com:matrix-org/synapse (diff) | |
download | synapse-fa728034900ae63d8132962008319d37df3993db.tar.xz |
Merge branch 'master' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 9fc65229fd..85ce6bea1a 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -56,7 +56,6 @@ event_counter = metrics.register_counter( def encode_json(json_object): if USE_FROZEN_DICTS: - # ujson doesn't like frozen_dicts return encode_canonical_json(json_object) else: return json.dumps(json_object, ensure_ascii=False) |