Better shutdown and restart

This commit is contained in:
Ruud
2012-01-14 20:55:23 +01:00
parent 9b6c06ceb2
commit 199c17e2c1
3 changed files with 5 additions and 8 deletions
+1 -1
View File
@@ -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()
+4
View File
@@ -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())
-7
View File
@@ -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: