Refresh the build_job from the database before we write updates.

This commit is contained in:
Jake Moshenko 2014-12-23 11:17:23 -05:00
parent 34bf92673b
commit aac7feb20b
2 changed files with 9 additions and 6 deletions

View file

@ -1,12 +1,12 @@
from data.database import BUILD_PHASE
from data import model
class StatusHandler(object):
""" Context wrapper for writing status to build logs. """
def __init__(self, build_logs, repository_build):
def __init__(self, build_logs, repository_build_uuid):
self._current_phase = None
self._repository_build = repository_build
self._uuid = repository_build.uuid
self._uuid = repository_build_uuid
self._build_logs = build_logs
self._status = {
@ -41,8 +41,11 @@ class StatusHandler(object):
self._current_phase = phase
self._append_log_message(phase, self._build_logs.PHASE, extra_data)
self._repository_build.phase = phase
self._repository_build.save()
# Update the repository build with the new phase
repo_build = model.get_repository_build(self._uuid)
repo_build.phase = phase
repo_build.save()
return True
def __enter__(self):