summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/models.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/models.py b/bitbake/lib/toaster/bldcontrol/models.py
index dc4afca2f7..25d94cd3fe 100644
--- a/bitbake/lib/toaster/bldcontrol/models.py
+++ b/bitbake/lib/toaster/bldcontrol/models.py
@@ -94,6 +94,7 @@ class BuildRequest(models.Model):
94 REQ_COMPLETED = 3 94 REQ_COMPLETED = 3
95 REQ_FAILED = 4 95 REQ_FAILED = 4
96 REQ_DELETED = 5 96 REQ_DELETED = 5
97 REQ_ARCHIVE = 6
97 98
98 REQUEST_STATE = ( 99 REQUEST_STATE = (
99 (REQ_CREATED, "created"), 100 (REQ_CREATED, "created"),
@@ -102,6 +103,7 @@ class BuildRequest(models.Model):
102 (REQ_COMPLETED, "completed"), 103 (REQ_COMPLETED, "completed"),
103 (REQ_FAILED, "failed"), 104 (REQ_FAILED, "failed"),
104 (REQ_DELETED, "deleted"), 105 (REQ_DELETED, "deleted"),
106 (REQ_ARCHIVE, "archive"),
105 ) 107 )
106 108
107 search_allowed_fields = ("brtarget__target",) 109 search_allowed_fields = ("brtarget__target",)