Skip to content

Commit

Permalink
Merge pull request #16 from Ensembl/bugfix/kb-status-filter
Browse files Browse the repository at this point in the history
BugFix, do not filter resolved KnownBug tickets.
  • Loading branch information
marcoooo authored Mar 7, 2024
2 parents 31e18d3 + cf01ade commit 80c8042
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.5
2.0.6
2 changes: 1 addition & 1 deletion src/ensembl/production/ensprod_jira/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(self, issue, name_map):

class KnownBug(JiraFakeModel):
jira_filter = 'project=ENSINT AND issuetype=Bug ' \
' and status not in ("Resolved", "Closed", "Under review")' \
' and status not in ("Closed", "Under review")' \
' ORDER BY affectedVersion DESC, fixVersion DESC'
template = 'admin/ensprod_jira/knownbug.html'
filter_on = (
Expand Down

0 comments on commit 80c8042

Please sign in to comment.