diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-01-10 13:50:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-10 13:50:23 +0800 |
commit | 8878cfa4a125348d92f8163988ac9d3279f27e75 (patch) | |
tree | 1a3d7dd1331f75d5ab1dd96f9320a7b154f10b93 /services | |
parent | 17b844a3ecbe1dd74bbde750e6a0adea07d92caa (diff) | |
download | gitea-8878cfa4a125348d92f8163988ac9d3279f27e75.tar.gz gitea-8878cfa4a125348d92f8163988ac9d3279f27e75.zip |
Fix lint (#9688)
Diffstat (limited to 'services')
-rw-r--r-- | services/pull/check.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/pull/check.go b/services/pull/check.go index b1b9505823..c5d8a585cb 100644 --- a/services/pull/check.go +++ b/services/pull/check.go @@ -201,7 +201,9 @@ func TestPullRequests(ctx context.Context) { } else if err = TestPatch(pr); err != nil { log.Error("testPatch[%d]: %v", pr.ID, err) pr.Status = models.PullRequestStatusError - pr.UpdateCols("status") + if err := pr.UpdateCols("status"); err != nil { + log.Error("update pr [%d] status to PullRequestStatusError failed: %v", pr.ID, err) + } continue } checkAndUpdateStatus(pr) |