mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Allow "manhole" to be ommited from the config
This commit is contained in:
parent
345995fcde
commit
50c87b8eed
@ -23,7 +23,7 @@ class ServerConfig(Config):
|
|||||||
self.bind_port = config["bind_port"]
|
self.bind_port = config["bind_port"]
|
||||||
self.bind_host = config["bind_host"]
|
self.bind_host = config["bind_host"]
|
||||||
self.unsecure_port = config["unsecure_port"]
|
self.unsecure_port = config["unsecure_port"]
|
||||||
self.manhole = config["manhole"]
|
self.manhole = config.get("manhole")
|
||||||
self.pid_file = self.abspath(config.get("pid_file"))
|
self.pid_file = self.abspath(config.get("pid_file"))
|
||||||
self.web_client = config["web_client"]
|
self.web_client = config["web_client"]
|
||||||
self.soft_file_limit = config["soft_file_limit"]
|
self.soft_file_limit = config["soft_file_limit"]
|
||||||
|
Loading…
Reference in New Issue
Block a user