builder: add missing 'yield from' coroutine
This commit is contained in:
parent
59aba93514
commit
177b96e965
1 changed files with 3 additions and 1 deletions
|
@ -419,7 +419,9 @@ class BuildComponent(BaseComponent):
|
|||
self._build_status.set_error('Build worker timed out', internal_error=True,
|
||||
requeued=self._current_job.has_retries_remaining())
|
||||
|
||||
self.parent_manager.job_completed(self._current_job, BuildJobResult.INCOMPLETE, self)
|
||||
yield trollius.From(self.parent_manager.job_completed(self._current_job,
|
||||
BuildJobResult.INCOMPLETE,
|
||||
self))
|
||||
self._build_status = None
|
||||
self._current_job = None
|
||||
|
||||
|
|
Reference in a new issue