Simplify daemon mechanism.

pull/943/head^2
Louis Vézina 4 years ago
parent 2c6a4583d0
commit b434ff2666

@ -80,6 +80,6 @@ if __name__ == '__main__':
while True:
check_status()
try:
time.sleep(1)
time.sleep(5)
except (KeyboardInterrupt, SystemExit):
pass

@ -222,7 +222,7 @@ def doShutdown():
else:
stop_file.write(six.text_type(''))
stop_file.close()
sys.exit(0)
os._exit(0)
@route(base_url + 'restart')
@ -243,7 +243,7 @@ def restart():
logging.info('Bazarr is being restarted...')
restart_file.write(six.text_type(''))
restart_file.close()
sys.exit(0)
os._exit(0)
@route(base_url + 'wizard')

Loading…
Cancel
Save