Better shutdown and restart
This commit is contained in:
+1
-1
@@ -59,5 +59,5 @@ if __name__ == '__main__':
|
||||
|
||||
from couchpotato.core.event import fireEvent
|
||||
fireEvent('app.crappy_shutdown', single = True)
|
||||
time.sleep(1)
|
||||
time.sleep(0.1)
|
||||
sys.exit()
|
||||
|
||||
@@ -46,6 +46,7 @@ class Core(Plugin):
|
||||
self.urlopen('%sapp.shutdown' % self.createApiUrl(), show_error = False)
|
||||
return True
|
||||
except:
|
||||
self.initShutdown()
|
||||
return False
|
||||
|
||||
def crappyRestart(self):
|
||||
@@ -53,6 +54,7 @@ class Core(Plugin):
|
||||
self.urlopen('%sapp.restart' % self.createApiUrl(), show_error = False)
|
||||
return True
|
||||
except:
|
||||
self.initShutdown(restart = True)
|
||||
return False
|
||||
|
||||
def shutdown(self):
|
||||
@@ -89,6 +91,8 @@ class Core(Plugin):
|
||||
|
||||
try:
|
||||
request.environ.get('werkzeug.server.shutdown')()
|
||||
except RuntimeError:
|
||||
pass
|
||||
except:
|
||||
log.error('Failed shutting down the server: %s' % traceback.format_exc())
|
||||
|
||||
|
||||
@@ -8,9 +8,7 @@ from werkzeug.contrib.cache import FileSystemCache
|
||||
import locale
|
||||
import logging
|
||||
import os.path
|
||||
import socket
|
||||
import sys
|
||||
import time
|
||||
import traceback
|
||||
|
||||
def getOptions(base_path, args):
|
||||
@@ -189,11 +187,6 @@ def runCouchPotato(options, base_path, args, handle = None):
|
||||
# Go go go!
|
||||
try:
|
||||
app.run(**config)
|
||||
except socket.error:
|
||||
log.error('Something else is running on the same address')
|
||||
time.sleep(3)
|
||||
app.run(**config)
|
||||
log.error('Something else is running on the same address222')
|
||||
except (KeyboardInterrupt, SystemExit):
|
||||
raise
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user