(self, pidfile, configfile, basedir, host, port, debug, allowRoot, logConf)
| 17 | |
| 18 | class Main(Daemon): |
| 19 | def __init__(self, pidfile, configfile, basedir, host, port, debug, allowRoot, logConf): |
| 20 | Daemon.__init__(self, pidfile) |
| 21 | |
| 22 | self._configfile = configfile |
| 23 | self._basedir = basedir |
| 24 | self._host = host |
| 25 | self._port = port |
| 26 | self._debug = debug |
| 27 | self._allowRoot = allowRoot |
| 28 | self._logConf = logConf |
| 29 | |
| 30 | def run(self): |
| 31 | startServer(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot) |
nothing calls this directly
no outgoing calls
no test coverage detected