From 9196c72b874078f05c457b51bf7511229bc32c83 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Fri, 27 Nov 2020 22:56:31 -0600 Subject: [PATCH] Increment skip to avoid infini-loop (#13703) (#13728) Signed-off-by: jolheiser Co-authored-by: Lauris BH Co-authored-by: Lauris BH --- services/pull/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/pull/pull.go b/services/pull/pull.go index 963535ec77..32c2775bc8 100644 --- a/services/pull/pull.go +++ b/services/pull/pull.go @@ -567,7 +567,7 @@ func GetCommitMessages(pr *models.PullRequest) string { } element = element.Next() } - + skip += limit } }