Commit b66451a3 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 171506: Fixes bustage in sanitycheck.cgi by making it check for…

Fix for bug 171506: Fixes bustage in sanitycheck.cgi by making it check for correct product IDs in the flaginclusions and flagexclusions tables instead of the flagtypes table, which no longer has a product_id field. r=joel
parent 733a4f3b
......@@ -280,7 +280,8 @@ CrossCheck("products", "id",
["components", "product_id", "name"],
["milestones", "product_id", "value"],
["versions", "product_id", "value"],
["flagtypes", "product_id", "name"]);
["flaginclusions", "product_id", "type_id"],
["flagexclusions", "product_id", "type_id"]);
DateCheck("groups", "last_changed");
DateCheck("profiles", "refreshed_when");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment