This commit is contained in:
gfdgd_xi 2023-06-25 11:57:34 +08:00
parent 86bc122c5f
commit b1e455ca48
1 changed files with 9 additions and 5 deletions

View File

@ -8,11 +8,15 @@ PIDFILE = '/tmp/uengine-runner.pid'
#程序结束时清理pid
@atexit.register
def remove_pid():
try:
with open(PIDFILE) as pidfile:
pidlst = pidfile.readlines()
pidlst.remove(str(PID)+'\n')
with open(PIDFILE,'w') as pidfile:
pidfile.writelines(pidlst)
except:
# 忽略
pass
#更新时结束进程
def main():