Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix errors from malformed log line (#7454)
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh authored May 7, 2020
1 parent da9b2db commit aa5aa6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/7454.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for running replication over Redis when using workers.
2 changes: 1 addition & 1 deletion synapse/replication/tcp/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def messageReceived(self, pattern: str, channel: str, message: str):
cmd = parse_command_from_line(message)
except Exception:
logger.exception(
"[%s] failed to parse line: %r", message,
"Failed to parse replication line: %r", message,
)
return

Expand Down

0 comments on commit aa5aa6f

Please sign in to comment.