Close PID file
This commit is contained in:
parent
53c3113b44
commit
0a09804821
@ -105,7 +105,8 @@ def run():
|
|||||||
if pid:
|
if pid:
|
||||||
sys.exit()
|
sys.exit()
|
||||||
elif config.get("server", "pid"):
|
elif config.get("server", "pid"):
|
||||||
open(config.get("server", "pid"), "w").write(str(os.getpid()))
|
with open(config.get("server", "pid"), "w") as pid_file:
|
||||||
|
pid_file.write(str(os.getpid()))
|
||||||
sys.stdout = sys.stderr = open(os.devnull, "w")
|
sys.stdout = sys.stderr = open(os.devnull, "w")
|
||||||
|
|
||||||
# Register exit function
|
# Register exit function
|
||||||
|
Loading…
Reference in New Issue
Block a user