Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pkg/api/componentreadiness/regressiontracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ func (prs *PostgresRegressionStore) ResolveTriages() error {
continue
}

ReportTriageResolved(prs.jiraClient, triage)
log.Infof("Resolved triage %d with resolution time %v", triage.ID, triage.Resolved.Time)
}

Expand Down
7 changes: 0 additions & 7 deletions pkg/api/componentreadiness/triage.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,6 @@ func CreateTriage(dbc *gorm.DB, jiraClient *jira.Client, triage models.Triage, r

const jiraPrefix = "https://issues.redhat.com/browse/"

// ReportTriageResolved comments on the associated jira that the regressions have been resolved, including a link
// to the triage details
func ReportTriageResolved(jiraClient *jira.Client, triage models.Triage) {
message := "All regressions associated with this triage record have been resolved."
reportOnJiraUsedForTriage(jiraClient, triage, message, nil)
}

// ReportTriageAddedForJira comments on the associated jira with a link to the triage details
func ReportTriageAddedForJira(jiraClient *jira.Client, triage models.Triage, req *http.Request) {
message := "This bug has been triaged to one or more component readiness regressions."
Expand Down