From 60281bcac68ebc54db5e22e72caebe76fd8b5722 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Mon, 6 Dec 2010 23:30:46 +0100 Subject: [PATCH] add the special queues Signed-off-by: Joerg Jaspert --- dak/dakdb/update22.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dak/dakdb/update22.py b/dak/dakdb/update22.py index b6fbbb44..dbd7ced6 100755 --- a/dak/dakdb/update22.py +++ b/dak/dakdb/update22.py @@ -69,7 +69,7 @@ def do_update(self): for q in c.fetchall(): queues[q[0]] = q[1] - if q[1] in ['accepted', 'buildd']: + if q[1] in ['accepted', 'buildd', 'embargoed', 'unembargoed']: # Move to build_queue_table c.execute("""INSERT INTO build_queue (queue_name, path, copy_files) VALUES ('%s', '%s', '%s')""" % (q[1], q[2], q[3])) -- 2.39.2