From: Belen Barros Pena Date: Tue, 18 Feb 2014 12:08:40 +0000 (+0000) Subject: bitbake: toaster: Set correct string for missed sstate attempts X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd52dfd22d8399ea8f3958a551bc6c24d5a8796e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 24d8d9c5735..588e1b92658 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 )