mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
bitbake: toaster: Set correct string for missed sstate attempts
Replace 'Missed' with 'File not in cache'in models.py (Bitbake rev: cb76a1d39ce36a36dc398a0422bcfac1c72f9c2b) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a6867343b6
commit
fd52dfd22d
@@ -78,7 +78,7 @@ class Task(models.Model):
|
|||||||
|
|
||||||
SSTATE_RESULT = (
|
SSTATE_RESULT = (
|
||||||
(SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking.
|
(SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking.
|
||||||
(SSTATE_MISS, 'Missing'), # it is a miss
|
(SSTATE_MISS, 'File not in cache'), # the sstate object was not found
|
||||||
(SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed
|
(SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed
|
||||||
(SSTATE_RESTORED, 'Succeeded'), # successfully restored
|
(SSTATE_RESTORED, 'Succeeded'), # successfully restored
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user