Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
61e28cdb
Commit
61e28cdb
authored
10 years ago
by
Matthew Hodgson
Browse files
Options
Downloads
Patches
Plain Diff
specify metavars in argparse
parent
118b2504
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/config/server.py
+3
-2
3 additions, 2 deletions
synapse/config/server.py
with
3 additions
and
2 deletions
synapse/config/server.py
+
3
−
2
View file @
61e28cdb
...
...
@@ -39,7 +39,7 @@ class ServerConfig(Config):
help
=
"
The name of the server
"
)
server_group
.
add_argument
(
"
--signing-key-path
"
,
help
=
"
The signing key to sign messages with
"
)
server_group
.
add_argument
(
"
-p
"
,
"
--bind-port
"
,
type
=
int
,
server_group
.
add_argument
(
"
-p
"
,
"
--bind-port
"
,
metavar
=
"
PORT
"
,
type
=
int
,
help
=
"
TCP port to listen on
"
)
server_group
.
add_argument
(
"
--bind-host
"
,
default
=
""
,
help
=
"
Local interface to listen on
"
)
...
...
@@ -51,7 +51,8 @@ class ServerConfig(Config):
server_group
.
add_argument
(
"
-W
"
,
"
--no-webclient
"
,
default
=
True
,
action
=
"
store_false
"
,
help
=
"
Don
'
t host a web client.
"
)
server_group
.
add_argument
(
"
--manhole
"
,
dest
=
"
manhole
"
,
type
=
int
,
server_group
.
add_argument
(
"
--manhole
"
,
metavar
=
"
PORT
"
,
dest
=
"
manhole
"
,
type
=
int
,
help
=
"
Turn on the twisted telnet manhole
"
"
service on the given port.
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment