summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-05 17:22:16 +0000
committerErik Johnston <erik@matrix.org>2018-02-07 10:32:32 +0000
commit24dd73028ad7fc7a5109a5d97eef5a79179225d4 (patch)
tree67f3f226cf5174a4a7227228acd4ec2ccb05966b /synapse/config
parentRemove pointless ratelimit check (diff)
downloadsynapse-24dd73028ad7fc7a5109a5d97eef5a79179225d4.tar.xz
Add replication http endpoint for event sending
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/workers.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/config/workers.py b/synapse/config/workers.py
index 4b6884918d..80baf0ce0e 100644
--- a/synapse/config/workers.py
+++ b/synapse/config/workers.py
@@ -33,8 +33,16 @@ class WorkerConfig(Config):
         self.worker_pid_file = config.get("worker_pid_file")
         self.worker_log_file = config.get("worker_log_file")
         self.worker_log_config = config.get("worker_log_config")
+
+        # The host used to connect to the main synapse
         self.worker_replication_host = config.get("worker_replication_host", None)
+
+        # The port on the main synapse for TCP replication
         self.worker_replication_port = config.get("worker_replication_port", None)
+
+        # The port on the main synapse for HTTP replication endpoint
+        self.worker_replication_http_port = config.get("worker_replication_http_port")
+
         self.worker_name = config.get("worker_name", self.worker_app)
 
         self.worker_main_http_uri = config.get("worker_main_http_uri", None)