Skip to content

Commit

Permalink
Merge branch 'main' into extend-api
Browse files Browse the repository at this point in the history
  • Loading branch information
jamengual authored Dec 7, 2023
2 parents b7854a5 + 0f8db49 commit 95b413f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/events/vcs/gitlab_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,12 +387,12 @@ func (g *GitlabClient) UpdateStatus(repo models.Repo, pull models.PullRequest, s
break
}
if i != retries {
g.logger.Debug("Head pipeline not found for merge request %d, source '%s'. Retrying in %s",
pull.Num, mr.HeadPipeline.Source, delay)
g.logger.Debug("Head pipeline not found for merge request %d. Retrying in %s",
pull.Num, delay)
time.Sleep(delay)
} else {
g.logger.Debug("Head pipeline not found for merge request %d, source '%s'.",
pull.Num, mr.HeadPipeline.Source)
g.logger.Debug("Head pipeline not found for merge request %d.",
pull.Num)
}
}

Expand Down

0 comments on commit 95b413f

Please sign in to comment.