Skip to content

Commit

Permalink
Fix bug of migrated repository not index (#16991) (#16995)
Browse files Browse the repository at this point in the history
Fix #16986, #16152

Co-authored-by: Lunny Xiao <[email protected]>
  • Loading branch information
6543 and lunny authored Sep 8, 2021
1 parent 0e53baf commit f8503b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/task/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ func runMigrateTask(t *models.Task) (err error) {
}

opts.MigrateToRepoID = t.RepoID
var repo *models.Repository

ctx, cancel := context.WithCancel(graceful.GetManager().ShutdownContext())
defer cancel()
Expand All @@ -106,9 +105,9 @@ func runMigrateTask(t *models.Task) (err error) {
return
}

repo, err = migrations.MigrateRepository(ctx, t.Doer, t.Owner.Name, *opts)
t.Repo, err = migrations.MigrateRepository(ctx, t.Doer, t.Owner.Name, *opts)
if err == nil {
log.Trace("Repository migrated [%d]: %s/%s", repo.ID, t.Owner.Name, repo.Name)
log.Trace("Repository migrated [%d]: %s/%s", t.Repo.ID, t.Owner.Name, t.Repo.Name)
return
}

Expand Down

0 comments on commit f8503b5

Please sign in to comment.