Only log Error on getLastCommitStatus error to let pull list still be visible (#15715)

This commit is contained in:
6543 2021-05-04 14:03:31 +02:00 committed by GitHub
parent dbbb75712d
commit f1e8b8c0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -677,7 +677,8 @@ func GetIssuesLastCommitStatus(issues models.IssueList) (map[int64]*models.Commi
status, err := getLastCommitStatus(gitRepo, issue.PullRequest)
if err != nil {
return nil, err
log.Error("getLastCommitStatus: cant get last commit of pull [%d]: %v", issue.PullRequest.ID, err)
continue
}
res[issue.PullRequest.ID] = status
}