]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: toaster: Set correct string for missed sstate attempts
authorBelen Barros Pena <belen.barros.pena@intel.com>
Tue, 18 Feb 2014 12:08:40 +0000 (12:08 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 9 Mar 2014 19:23:59 +0000 (12:23 -0700)
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>
bitbake/lib/toaster/orm/models.py

index 24d8d9c57359fe86dd180368cedd01b3eed351a9..588e1b92658c07958e4d905ddb8447da85c2b858 100644 (file)
@@ -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
     )