Complete backport of pid cleanup fix for #1324

This commit is contained in:
Kyle Evans 2016-05-15 09:16:53 -05:00
parent 2c0fa7c1d1
commit 86fbbefb6e

View file

@ -24,7 +24,7 @@ class Main(Daemon):
self._logConf = logConf
def run(self):
octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot)
octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot, self._logConf, self)
octoprint.run()
def main():