summary refs log tree commit diff
path: root/synapse/replication/tcp
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-12-31 11:58:26 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-12-31 11:58:26 +0000
commita190ad61b355dc3c3a09901e33771ab991415ce3 (patch)
tree7871184a61fe107cd49c540be3b744cdc4301597 /synapse/replication/tcp
parentMerge commit '054a6b953' into anoa/dinsic_release_1_23_1 (diff)
parentStart fewer opentracing spans (#8640) (diff)
downloadsynapse-a190ad61b355dc3c3a09901e33771ab991415ce3.tar.xz
Merge commit '2b7c18087' into anoa/dinsic_release_1_23_1
Diffstat (limited to 'synapse/replication/tcp')
-rw-r--r--synapse/replication/tcp/redis.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/replication/tcp/redis.py b/synapse/replication/tcp/redis.py

index de19705c1f..bc6ba709a7 100644 --- a/synapse/replication/tcp/redis.py +++ b/synapse/replication/tcp/redis.py
@@ -166,7 +166,9 @@ class RedisSubscriber(txredisapi.SubscriberProtocol, AbstractConnection): Args: cmd (Command) """ - run_as_background_process("send-cmd", self._async_send_command, cmd) + run_as_background_process( + "send-cmd", self._async_send_command, cmd, bg_start_span=False + ) async def _async_send_command(self, cmd: Command): """Encode a replication command and send it over our outbound connection"""