Qual è il punto della catena di sedili se l'intera catena si rompe se uno dei compiti fallisce? !!La catena di sedimenti si interrompe se una delle attività fallisce
ho questa catena Sedano:
res = chain(workme.s (y=1111), workme2.s(2222), workme3.s(3333),)()
e ho fatto workme2 fallisce con tentativi come questo:
@celery.task(default_retry_delay=5, max_retries = 10, queue="sure")
def workme2(x,y):
# try:
try:
print str(y)
sleep(2)
print str(x)
## adding any condition that makes the task fail
if x!=None:
raise Exception('Aproblem from your workme task')
print 'This is my username: ' + str(x['user']) + \
' And Password: ' + str(x['pas'])
return "22xx"
except Exception, exc:
workme2.retry(args=[x,y], exc=exc,)
http://stackoverflow.com/questions/11508112/retrying-celery-failed-tasks-that-are-part-ofa-a-chain –
@BernhardVallant, Ciao, ho scaricato l'ultimo un paio di giorni fa, questo significa che questa patch non è inclusa ?? – securecurve
Se è più recente della 3.0.4 suppongo che dovrebbe essere incluso ... –