From 0cf7e480b442f9f893b782ab1a437b556c1bbb54 Mon Sep 17 00:00:00 2001
From: Erik Johnston <erik@matrix.org>
Date: Tue, 5 May 2015 18:20:01 +0100
Subject: [PATCH] And use buffer(...) there as well

---
 synapse/federation/persistence.py | 2 +-
 synapse/storage/transactions.py   | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/synapse/federation/persistence.py b/synapse/federation/persistence.py
index 865766eb2..1a7cc02f9 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,
         )
diff --git a/synapse/storage/transactions.py b/synapse/storage/transactions.py
index b5b21a9b1..624da4a9d 100644
--- a/synapse/storage/transactions.py
+++ b/synapse/storage/transactions.py
@@ -162,7 +162,8 @@ class TransactionStore(SQLBaseStore):
         return self.runInteraction(
             "delivered_txn",
             self._delivered_txn,
-            transaction_id, destination, code, response_dict
+            transaction_id, destination, code,
+            buffer(encode_canonical_json(response_dict)),
         )
 
     def _delivered_txn(self, txn, transaction_id, destination,