diff options
author | John Olheiser | 2020-11-27 22:56:31 -0600 |
---|---|---|
committer | GitHub | 2020-11-28 04:56:31 +0000 |
commit | 9196c72b874078f05c457b51bf7511229bc32c83 (patch) | |
tree | 1d930f337d52c14274e9a4ecc59893851f0b0598 | |
parent | b7ad2d45576d27b4934ed1860ad545d48e106391 (diff) |
Increment skip to avoid infini-loop (#13703) (#13728)release/v1.12
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: Lauris BH <lauris@nix.lv>
-rw-r--r-- | services/pull/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/pull/pull.go b/services/pull/pull.go index 963535ec7..32c2775bc 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 } } |