Only perform the heartbeat check if the build is actually running. If it has completed, or has an error, then we know it is done.
This commit is contained in:
parent
81846f6a5f
commit
73ebcd45e3
1 changed files with 5 additions and 4 deletions
|
@ -70,10 +70,11 @@ def build_status_view(build_obj, can_write=False):
|
||||||
|
|
||||||
# If the status contains a heartbeat, then check to see if has been written in the last few
|
# If the status contains a heartbeat, then check to see if has been written in the last few
|
||||||
# minutes. If not, then the build timed out.
|
# minutes. If not, then the build timed out.
|
||||||
if status is not None and 'heartbeat' in status and status['heartbeat']:
|
if phase != database.BUILD_PHASE.COMPLETE and phase != database.BUILD_PHASE.ERROR:
|
||||||
heartbeat = datetime.datetime.fromtimestamp(status['heartbeat'])
|
if status is not None and 'heartbeat' in status and status['heartbeat']:
|
||||||
if datetime.datetime.now() - heartbeat > datetime.timedelta(minutes=1):
|
heartbeat = datetime.datetime.fromtimestamp(status['heartbeat'])
|
||||||
phase = database.BUILD_PHASE.INTERNAL_ERROR
|
if datetime.datetime.now() - heartbeat > datetime.timedelta(minutes=1):
|
||||||
|
phase = database.BUILD_PHASE.INTERNAL_ERROR
|
||||||
|
|
||||||
logger.debug('Can write: %s job_config: %s', can_write, build_obj.job_config)
|
logger.debug('Can write: %s job_config: %s', can_write, build_obj.job_config)
|
||||||
resp = {
|
resp = {
|
||||||
|
|
Reference in a new issue