Remove unnecessary code from the runner.py module
authorDiane Trout <diane@caltech.edu>
Tue, 8 Jan 2008 02:11:48 +0000 (02:11 +0000)
committerDiane Trout <diane@caltech.edu>
Tue, 8 Jan 2008 02:11:48 +0000 (02:11 +0000)
gaworkflow/runner.py

index 72a9273da70ae8731577aa7540ec20004202b6aa..d82d391057f3a8545a8cdbd2ccab5f3c2ba504e7 100644 (file)
@@ -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__":