summary refs log tree commit diff
path: root/synapse/config/server.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-04-24 10:07:55 +0100
committerMark Haines <mark.haines@matrix.org>2015-04-24 10:07:55 +0100
commit149ed9f151770def0e4c130c2dcc1c64bcf65b19 (patch)
treed390f1eda6673b09692179b630690808d10a4503 /synapse/config/server.py
parentUpdate to match the specification for key/v2 (diff)
downloadsynapse-149ed9f151770def0e4c130c2dcc1c64bcf65b19.tar.xz
Better help for the old-signing-key option
Diffstat (limited to 'synapse/config/server.py')
-rw-r--r--synapse/config/server.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/config/server.py b/synapse/config/server.py

index a26fb115f2..3ce3ed584f 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py
@@ -60,7 +60,10 @@ class ServerConfig(Config): server_group.add_argument("--signing-key-path", help="The signing key to sign messages with") server_group.add_argument("--old-signing-key-path", - help="The old signing keys") + help="The keys that the server used to sign" + " sign messages with but won't use" + " to sign new messages. E.g. it has" + " lost its private key") server_group.add_argument("--key-refresh-interval", default=24 * 60 * 60 * 1000, # 1 Day help="How long a key response is valid for."