Fix the PID number stored on filesystem
This commit is contained in:
parent
f90bb516a5
commit
77ad16f2a9
@ -105,7 +105,7 @@ def run():
|
||||
if pid:
|
||||
sys.exit()
|
||||
elif config.get("server", "pid"):
|
||||
open(config.get("server", "pid"), "w").write(str(pid))
|
||||
open(config.get("server", "pid"), "w").write(str(os.getpid()))
|
||||
sys.stdout = sys.stderr = open(os.devnull, "w")
|
||||
|
||||
# Register exit function
|
||||
|
Loading…
Reference in New Issue
Block a user