Skip to content
Snippets Groups Projects
Unverified Commit aa5aa6f9 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Fix errors from malformed log line (#7454)

parent da9b2db3
Branches
Tags
No related merge requests found
Add support for running replication over Redis when using workers.
...@@ -96,7 +96,7 @@ class RedisSubscriber(txredisapi.SubscriberProtocol, AbstractConnection): ...@@ -96,7 +96,7 @@ class RedisSubscriber(txredisapi.SubscriberProtocol, AbstractConnection):
cmd = parse_command_from_line(message) cmd = parse_command_from_line(message)
except Exception: except Exception:
logger.exception( logger.exception(
"[%s] failed to parse line: %r", message, "Failed to parse replication line: %r", message,
) )
return return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment