diff options
author | David Robertson <davidr@element.io> | 2022-11-17 16:11:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 16:11:08 +0000 |
commit | 01a052789266179c70c10ea6a6253c64fd9990d2 (patch) | |
tree | d2b40a1b41096f5a2357a55a672120379e9dde50 /synapse/config/workers.py | |
parent | Fix check to ignore blank lines in incoming TCP replication (#14449) (diff) | |
download | synapse-01a052789266179c70c10ea6a6253c64fd9990d2.tar.xz |
Fix version that `worker_main_http_uri` is redundant from (#14476)
* Fix version that `worker_main_http_uri` is redundant from * Changelog
Diffstat (limited to '')
-rw-r--r-- | synapse/config/workers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/workers.py b/synapse/config/workers.py index c4e2273a95..913b83e174 100644 --- a/synapse/config/workers.py +++ b/synapse/config/workers.py @@ -166,7 +166,7 @@ class WorkerConfig(Config): self.worker_main_http_uri = config.get("worker_main_http_uri", None) if self.worker_main_http_uri is not None: logger.warning( - "The config option worker_main_http_uri is unused since Synapse 1.72. " + "The config option worker_main_http_uri is unused since Synapse 1.73. " "It can be safely removed from your configuration." ) |