Code review comment for lp:~laney/arsenal/champagne

Revision history for this message
Brian Murray (brian-murray) wrote :

The ls-ubuntu-tag-json code is actually for a different report. The reports rls-** reports are generated by "scripts/collect-bug-data" which is passed a json file with search criteria. That criteria follows:

    "search_criteria": [
        {
            "distribution": "ubuntu",
            "series": [
                "focal",
                "NONE"
            ],
            "status": [
                "New",
                "Confirmed",
                "Triaged",
                "Incomplete",
                "Incomplete (with response)",
                "Incomplete (without response)",
                "In Progress",
                "Fix Committed"
            ],
            "tags": [
                "rls-ff-incoming",
                "-rls-ff-notfixing"
            ],
            "tags_combinator": "All"
        }
    ],

Adding in 'champagne' as an additional filter to the search isn't a trivial matter because we want to search for bugs that are tagged 'rls-ff-incoming' and not '-rls-ff-notfixing' so we are using an and search in Launchpad. That being said if a bug is tagged 'rls-ff-incoming' and 'rls-ff-notifixing' I think something has failed in the rls bug process as when you tag it notfixing you should remove the incoming tag. So I'm just gonna modify the search to include champagne.

« Back to merge proposal