Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,7 @@ Pierre Jaury <pierre at jaury.eu>
* Docker packaging

Serban Constantin <serban.constantin at gmail dot com>
* Small bug fix
* Small bug fix

Jason Robinson <jasonr at matrix.org>
* Minor fixes
1 change: 1 addition & 0 deletions changelog.d/4353.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix command hint to generate a config file when trying to start without a config file
4 changes: 3 additions & 1 deletion synctl
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ def main():
write(
"No config file found\n"
"To generate a config file, run '%s -c %s --generate-config"
" --server-name=<server name>'\n" % (" ".join(SYNAPSE), options.configfile),
" --server-name=<server name> --report-stats=<yes/no>'\n" % (
" ".join(SYNAPSE), options.configfile,
),
stream=sys.stderr,
)
sys.exit(1)
Expand Down