mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-12 02:24:20 -05:00
Ensure ReplicationStreamer is always started when replication enabled. (#7579)
Fixes #7566.
This commit is contained in:
parent
b3b2038b6a
commit
9bac5d62b3
1
changelog.d/7579.bugfix
Normal file
1
changelog.d/7579.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix bug where `ReplicationStreamer` was not always started when replication was enabled. Bug introduced in v1.14.0rc1.
|
@ -159,6 +159,9 @@ class ReplicationCommandHandler:
|
|||||||
hs.config.redis_port,
|
hs.config.redis_port,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# First let's ensure that we have a ReplicationStreamer started.
|
||||||
|
hs.get_replication_streamer()
|
||||||
|
|
||||||
# We need two connections to redis, one for the subscription stream and
|
# We need two connections to redis, one for the subscription stream and
|
||||||
# one to send commands to (as you can't send further redis commands to a
|
# one to send commands to (as you can't send further redis commands to a
|
||||||
# connection after SUBSCRIBE is called).
|
# connection after SUBSCRIBE is called).
|
||||||
|
Loading…
Reference in New Issue
Block a user