Fix errors from malformed log line (#7454)
parent
da9b2db3af
commit
aa5aa6f96a
|
@ -0,0 +1 @@
|
||||||
|
Add support for running replication over Redis when using workers.
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue