Do not make Core a thread anymore as it is not needed.

This commit is contained in:
Andrew Resch 2008-01-20 00:56:42 +00:00
parent f042bf0dda
commit 76a0eb12e8
2 changed files with 6 additions and 8 deletions

View File

@ -90,12 +90,11 @@ DEFAULT_PREFS = {
}
class Core(
threading.Thread,
ThreadingMixIn,
SimpleXMLRPCServer.SimpleXMLRPCServer):
def __init__(self, port):
log.debug("Core init..")
threading.Thread.__init__(self)
#threading.Thread.__init__(self)
self.client_address = None
@ -141,6 +140,7 @@ class Core(
gettext.install("deluge",
pkg_resources.resource_filename(
"deluge", "i18n"))
# Setup signals
try:
import gnome.ui
self.client = gnome.ui.Client()
@ -250,7 +250,7 @@ class Core(
self.loop = gobject.MainLoop()
self.loop.run()
def _shutdown(self):
def _shutdown(self, data=None):
"""This is called by a thread from shutdown()"""
log.info("Shutting down core..")
component.shutdown()

View File

@ -37,7 +37,5 @@ from deluge.log import LOG as log
class Daemon:
def __init__(self, port):
# Start the core as a thread and join it until it's done
self.core = Core(port)
self.core.start()
self.core.join()
self.core = Core(port).run()