Handle celery.exceptions.SoftTimeLimitExceeded (#2703)

* Handle celery.exceptions.SoftTimeLimitExceeded

When the celery soft_time_limit is reached the celery exception is
catched and the build is reported as failed to be shown as an error
message to the user.

* Build error message updated
tox-dependencies
Manuel Kaufmann 2017-03-07 20:51:17 -05:00 committed by Anthony
parent 24e417eb8d
commit 0bdc1304d2
1 changed files with 9 additions and 5 deletions

View File

@ -14,6 +14,7 @@ import hashlib
from collections import defaultdict
from celery import task, Task
from celery.exceptions import SoftTimeLimitExceeded
from djcelery import celery as celery_app
from django.conf import settings
from django.core.urlresolvers import reverse
@ -169,12 +170,15 @@ class UpdateDocsTask(Task):
build_env=self.build_env,
config=self.config)
self.setup_environment()
try:
self.setup_environment()
# TODO the build object should have an idea of these states, extend
# the model to include an idea of these outcomes
outcomes = self.build_docs()
build_id = self.build.get('id')
# TODO the build object should have an idea of these states, extend
# the model to include an idea of these outcomes
outcomes = self.build_docs()
build_id = self.build.get('id')
except SoftTimeLimitExceeded:
raise BuildEnvironmentError(_('Build exited due to time out'))
# Web Server Tasks
if build_id: