From fd52dfd22d8399ea8f3958a551bc6c24d5a8796e Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Tue, 18 Feb 2014 12:08:40 +0000 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/toaster/orm/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/toaster/orm') diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 24d8d9c573..588e1b9265 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -78,7 +78,7 @@ class Task(models.Model): SSTATE_RESULT = ( (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_RESTORED, 'Succeeded'), # successfully restored ) -- cgit v1.2.3-54-g00ecf