##// END OF EJS Templates
some code fixes templates+helpers new rfc date without tz, added timerproxy formatting
some code fixes templates+helpers new rfc date without tz, added timerproxy formatting

File last commit:

r487:b12ea84f celery
r494:b4d9680c celery
Show More
__init__.py
29 lines | 694 B | text/x-python | PythonLexer
starting celery branch
r467 from vcs.utils.lazy import LazyProperty
import logging
Implemented password reset(forms/models/ tasks) and mailing tasks....
r474 import os
import sys
import traceback
starting celery branch
r467
log = logging.getLogger(__name__)
class ResultWrapper(object):
def __init__(self, task):
self.task = task
@LazyProperty
def result(self):
return self.task
Some fixes to summary, and total rewrite of summary graphs implemented more interactive graph....
r487 def run_task(task, *args, **kwargs):
starting celery branch
r467 try:
Some fixes to summary, and total rewrite of summary graphs implemented more interactive graph....
r487 t = task.delay(*args, **kwargs)
log.info('running task %s', t.task_id)
starting celery branch
r467 return t
Some fixes to summary, and total rewrite of summary graphs implemented more interactive graph....
r487 except Exception, e:
if e.errno == 111:
log.debug('Unnable to connect. Sync execution')
else:
log.error(traceback.format_exc())
starting celery branch
r467 #pure sync version
Some fixes to summary, and total rewrite of summary graphs implemented more interactive graph....
r487 return ResultWrapper(task(*args, **kwargs))