X-Git-Url: http://woldlab.caltech.edu/gitweb/?a=blobdiff_plain;f=gaworkflow%2Frunner.py;h=d82d391057f3a8545a8cdbd2ccab5f3c2ba504e7;hb=6bb7b064ffccb8cc848031446923454757fd0331;hp=72a9273da70ae8731577aa7540ec20004202b6aa;hpb=ec6fab3a55789141df50964f9a59e696b7efc23e;p=htsworkflow.git diff --git a/gaworkflow/runner.py b/gaworkflow/runner.py index 72a9273..d82d391 100644 --- a/gaworkflow/runner.py +++ b/gaworkflow/runner.py @@ -89,20 +89,6 @@ class Runner(rpc.XmlRpcBot): logging.debug("reply: " + str(reply)) return reply - - def start(self, daemonize): - """ - Start application - """ - super(Runner, self).start(daemonize) - - - def stop(self): - """ - shutdown application - """ - super(Runner, self).stop() - def getStatusReport(self, fc_num): """ @@ -241,8 +227,7 @@ class Runner(rpc.XmlRpcBot): def main(args=None): - bot = Runner('demobot') - bot.cfg['loglevel'] = 'DEBUG' + bot = Runner() return bot.main(args) if __name__ == "__main__":