summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-04-04 11:10:15 +0100
committerErik Johnston <erik@matrix.org>2017-04-04 11:17:00 +0100
commitd1605794ad9f476637497ccac05b4912faf8e0fb (patch)
treeedb5039ea28afd75f66c2452e87a787e64d2c9af /synapse/config
parentShuffle and comment synchrotron presence (diff)
downloadsynapse-d1605794ad9f476637497ccac05b4912faf8e0fb.tar.xz
Remove unused worker config option
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/workers.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/config/workers.py b/synapse/config/workers.py
index ad06ba9691..ea48d931a1 100644
--- a/synapse/config/workers.py
+++ b/synapse/config/workers.py
@@ -28,7 +28,6 @@ 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")
-        self.worker_replication_url = config.get("worker_replication_url")
         self.worker_replication_host = config.get("worker_replication_host", None)
         self.worker_replication_port = config.get("worker_replication_port", None)
         self.worker_name = config.get("worker_name", self.worker_app)