diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-08-07 16:36:42 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2015-08-07 16:36:42 +0100 |
commit | efe60d5e8c76cede325aa09a138f5033b90b8d90 (patch) | |
tree | 2f513065cec2a0d3a319175e9c655f778c51139b /synapse/app/homeserver.py | |
parent | Merge pull request #209 from matrix-org/erikj/cached_keyword_args (diff) | |
download | synapse-efe60d5e8c76cede325aa09a138f5033b90b8d90.tar.xz |
Only print the pidfile path on startup if requested by a commandline flag
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-x | synapse/app/homeserver.py | 3 |
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", |