diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-05 18:20:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-05 18:20:01 +0100 |
commit | 0cf7e480b442f9f893b782ab1a437b556c1bbb54 (patch) | |
tree | adffd54138cb4d537edb45f2d715e26a391edb76 /synapse/federation | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/executemany (diff) | |
download | synapse-0cf7e480b442f9f893b782ab1a437b556c1bbb54.tar.xz |
And use buffer(...) there as well
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/persistence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/persistence.py b/synapse/federation/persistence.py index 865766eb2c..1a7cc02f92 100644 --- a/synapse/federation/persistence.py +++ b/synapse/federation/persistence.py @@ -99,5 +99,5 @@ class TransactionActions(object): transaction.transaction_id, transaction.destination, response_code, - encode_canonical_json(response_dict) + response_dict, ) |