diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-06-24 11:34:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 11:34:45 +0100 |
commit | c3c6b00d956937ad50673cec75eab7989938a39b (patch) | |
tree | bb60d510a3c0c95c678179559914c6f7c60c3821 /synapse/config/workers.py | |
parent | Factor acme bits out to a separate file (#5521) (diff) | |
download | synapse-c3c6b00d956937ad50673cec75eab7989938a39b.tar.xz |
Pass config_dir_path and data_dir_path into Config.read_config. (#5522)
* Pull config_dir_path and data_dir_path calculation out of read_config_files * Pass config_dir_path and data_dir_path into read_config
Diffstat (limited to 'synapse/config/workers.py')
-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 4f283a0c2f..3b75471d85 100644 --- a/synapse/config/workers.py +++ b/synapse/config/workers.py @@ -21,7 +21,7 @@ class WorkerConfig(Config): They have their own pid_file and listener configuration. They use the replication_url to talk to the main synapse process.""" - def read_config(self, config): + def read_config(self, config, **kwargs): self.worker_app = config.get("worker_app") # Canonicalise worker_app so that master always has None |