Improve comment reason

master
Richard Mitchell 2013-03-10 13:40:53 +00:00
parent 37f3f771fb
commit 07caef034b
2 changed files with 2 additions and 5 deletions

View File

@ -79,10 +79,6 @@ class Daemon:
self.daemonize()
self.run()
# Should the daemon terminate ensure pid removal
if os.path.exists(self.pidfile):
os.remove(self.pidfile)
def stop(self):
"""Stop the daemon."""

View File

@ -20,7 +20,8 @@ SUCCESS = {}
UPLOAD_FOLDER = settings().getBaseFolder("uploads")
BASEURL = "/ajax/"
app = Flask("octoprint")
# Only instantiated by the app runner
# Only instantiated by the Server().run() method
# In order that threads don't start too early when running as a Daemon
printer = None
gcodeManager = None