From a82c7d4323b498315e7261b9af7c8a6e7452a537 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Fri, 27 Nov 2020 22:55:53 -0600 Subject: [PATCH] Increment skip to avoid infini-loop (#13703) (#13727) 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 61af7fe9a5..c578686bd8 100644 --- a/services/pull/pull.go +++ b/services/pull/pull.go @@ -609,7 +609,7 @@ func GetCommitMessages(pr *models.PullRequest) string { } element = element.Next() } - + skip += limit } }