Edited description to note that the arg will not work with daemonize set in the config.
This commit is contained in:
parent
0afcbc65cb
commit
12f49b22ec
5
synctl
5
synctl
|
@ -69,7 +69,7 @@ def abort(message, colour=RED, stream=sys.stderr):
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def start(configfile, daemonize=True):
|
def start(configfile, daemonize = True):
|
||||||
write("Starting ...")
|
write("Starting ...")
|
||||||
args = SYNAPSE
|
args = SYNAPSE
|
||||||
|
|
||||||
|
@ -150,7 +150,8 @@ def main():
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--no-daemonize",
|
"--no-daemonize",
|
||||||
action="store_false",
|
action="store_false",
|
||||||
help="Run synapse in the foreground (for debugging)"
|
help="Run synapse in the foreground for debugging. "
|
||||||
|
"Will work only if the daemonize option is not set in the config."
|
||||||
)
|
)
|
||||||
|
|
||||||
options = parser.parse_args()
|
options = parser.parse_args()
|
||||||
|
|
Loading…
Reference in New Issue