summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-20 09:58:13 +0000
committerErik Johnston <erik@matrix.org>2018-03-20 09:58:13 +0000
commit9aa5a0af514b3f2719dd01aa221039c5ba1c0c80 (patch)
tree6f0e7eef402326e28117f1790776980b3c9087bd /synapse/replication
parentFix replication after switch to simplejson (diff)
downloadsynapse-9aa5a0af514b3f2719dd01aa221039c5ba1c0c80.tar.xz
Explicitly use simplejson
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/tcp/commands.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/synapse/replication/tcp/commands.py b/synapse/replication/tcp/commands.py
index 1b4b657210..0005ad5879 100644
--- a/synapse/replication/tcp/commands.py
+++ b/synapse/replication/tcp/commands.py
@@ -19,7 +19,7 @@ allowed to be sent by which side.
 """
 
 import logging
-import simplejson as json
+import simplejson
 
 
 logger = logging.getLogger(__name__)
@@ -100,14 +100,14 @@ class RdataCommand(Command):
         return cls(
             stream_name,
             None if token == "batch" else int(token),
-            json.loads(row_json)
+            simplejson.loads(row_json)
         )
 
     def to_line(self):
         return " ".join((
             self.stream_name,
             str(self.token) if self.token is not None else "batch",
-            json.dumps(self.row, namedtuple_as_object=False),
+            simplejson.dumps(self.row, namedtuple_as_object=False),
         ))
 
 
@@ -298,11 +298,11 @@ class InvalidateCacheCommand(Command):
     def from_line(cls, line):
         cache_func, keys_json = line.split(" ", 1)
 
-        return cls(cache_func, json.loads(keys_json))
+        return cls(cache_func, simplejson.loads(keys_json))
 
     def to_line(self):
         return " ".join((
-            self.cache_func, json.dumps(self.keys, namedtuple_as_object=False)
+            self.cache_func, simplejson.dumps(self.keys, namedtuple_as_object=False)
         ))
 
 
@@ -327,14 +327,14 @@ class UserIpCommand(Command):
     def from_line(cls, line):
         user_id, jsn = line.split(" ", 1)
 
-        access_token, ip, user_agent, device_id, last_seen = json.loads(jsn)
+        access_token, ip, user_agent, device_id, last_seen = simplejson.loads(jsn)
 
         return cls(
             user_id, access_token, ip, user_agent, device_id, last_seen
         )
 
     def to_line(self):
-        return self.user_id + " " + json.dumps((
+        return self.user_id + " " + simplejson.dumps((
             self.access_token, self.ip, self.user_agent, self.device_id,
             self.last_seen,
         ))