summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2015-08-07 16:36:42 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2015-08-07 16:36:42 +0100
commitefe60d5e8c76cede325aa09a138f5033b90b8d90 (patch)
tree2f513065cec2a0d3a319175e9c655f778c51139b /synapse/app
parentMerge pull request #209 from matrix-org/erikj/cached_keyword_args (diff)
downloadsynapse-efe60d5e8c76cede325aa09a138f5033b90b8d90.tar.xz
Only print the pidfile path on startup if requested by a commandline flag
Diffstat (limited to 'synapse/app')
-rwxr-xr-xsynapse/app/homeserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py

index 49e27c9e11..f04493f92a 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py
@@ -657,7 +657,8 @@ def run(hs): if hs.config.daemonize: - print hs.config.pid_file + if hs.config.print_pidfile: + print hs.config.pid_file daemon = Daemonize( app="synapse-homeserver",