Fix json encoding bug in replication

json encoders have an encode method, not a dumps method.
pull/3049/head
Richard van der Hoff 2018-04-03 15:09:48 +01:00
parent 05630758f2
commit 3ee4ad09eb
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class RdataCommand(Command):
return " ".join((
self.stream_name,
str(self.token) if self.token is not None else "batch",
_json_encoder.dumps(self.row),
_json_encoder.encode(self.row),
))