From bdcc9fa388262ece29f06973d601a99d3fee7be7 Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Tue, 8 Oct 2024 10:05:36 -0400 Subject: [PATCH] Fix incorrectly documented config path argument (#17802) --- changelog.d/17802.doc | 1 + docs/workers.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 changelog.d/17802.doc diff --git a/changelog.d/17802.doc b/changelog.d/17802.doc new file mode 100644 index 0000000000..72e653d3c4 --- /dev/null +++ b/changelog.d/17802.doc @@ -0,0 +1 @@ +Correct documentation to refer to the `--config-path` argument instead of `--config-file`. diff --git a/docs/workers.md b/docs/workers.md index 51b22fef9b..0116c455bc 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -177,11 +177,11 @@ The following applies to Synapse installations that have been installed from sou You can start the main Synapse process with Poetry by running the following command: ```console -poetry run synapse_homeserver --config-file [your homeserver.yaml] +poetry run synapse_homeserver --config-path [your homeserver.yaml] ``` For worker setups, you can run the following command ```console -poetry run synapse_worker --config-file [your homeserver.yaml] --config-file [your worker.yaml] +poetry run synapse_worker --config-path [your homeserver.yaml] --config-path [your worker.yaml] ``` ## Available worker applications