diff options
author | Erik Johnston <erik@matrix.org> | 2017-04-04 11:10:15 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-04-04 11:17:00 +0100 |
commit | d1605794ad9f476637497ccac05b4912faf8e0fb (patch) | |
tree | edb5039ea28afd75f66c2452e87a787e64d2c9af | |
parent | Shuffle and comment synchrotron presence (diff) | |
download | synapse-d1605794ad9f476637497ccac05b4912faf8e0fb.tar.xz |
Remove unused worker config option
-rw-r--r-- | synapse/config/workers.py | 1 |
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) |