diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-02-18 12:08:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-09 12:23:59 -0700 |
commit | fd52dfd22d8399ea8f3958a551bc6c24d5a8796e (patch) | |
tree | 79222b5d5e2807d0ccfba2569d9190c1ee66cc8f /bitbake/lib/toaster/orm | |
parent | a6867343b65e8062b1c987aac9e533a33e581b40 (diff) | |
download | poky-fd52dfd22d8399ea8f3958a551bc6c24d5a8796e.tar.gz |
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>
Diffstat (limited to 'bitbake/lib/toaster/orm')
-rw-r--r-- | bitbake/lib/toaster/orm/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
78 | 78 | ||
79 | SSTATE_RESULT = ( | 79 | SSTATE_RESULT = ( |
80 | (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. | 80 | (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. |
81 | (SSTATE_MISS, 'Missing'), # it is a miss | 81 | (SSTATE_MISS, 'File not in cache'), # the sstate object was not found |
82 | (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed | 82 | (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed |
83 | (SSTATE_RESTORED, 'Succeeded'), # successfully restored | 83 | (SSTATE_RESTORED, 'Succeeded'), # successfully restored |
84 | ) | 84 | ) |