예제 #1
0
파일: base.py 프로젝트: justelex/Findeco
 def run(self, *args, **kwargs):
     self.job()
     cron_done.send(sender=self, *args, **kwargs)
예제 #2
0
파일: base.py 프로젝트: pyarun/flink
 def run(self, *args, **kwargs):
     self.job()
     cron_done.send(sender=self, *args, **kwargs)
예제 #3
0
 def run(self, *args, **kwargs):
     try:
         self.job()
     except Exception:
         traceback.print_exc()
     cron_done.send(sender=self, *args, **kwargs)
예제 #4
0
 def run(self, *args, **kwargs):
     try:
         self.job()
     except Exception:
         traceback.print_exc()
     cron_done.send(sender=self, *args, **kwargs)
예제 #5
0
파일: base.py 프로젝트: lipengbo/portal
    def run(self, *args, **kwargs):
#         print "++++++++++++++++++++++++run"
        self.job()
        cron_done.send(sender=self, *args, **kwargs)