Fix typo in PR migration check (#7368)

This commit is contained in:
mrsdizzie 2019-07-06 16:32:15 -04:00 committed by techknowlogick
parent 89aa08d372
commit 7166629d9c
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ func migrateRepository(downloader base.Downloader, uploader base.Uploader, opts
if opts.PullRequests {
log.Trace("migrating pull requests and comments")
var prBatchSize = models.MaxBatchInsertSize("pullrequest")
var prBatchSize = uploader.MaxBatchInsertSize("pullrequest")
for i := 1; ; i++ {
prs, err := downloader.GetPullRequests(i, prBatchSize)
if err != nil {