parent
							
								
									d27f061863
								
							
						
					
					
						commit
						3b13c5d41a
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		|  | @ -93,7 +93,6 @@ func runMigrateTask(t *models.Task) (err error) { | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	opts.MigrateToRepoID = t.RepoID | 	opts.MigrateToRepoID = t.RepoID | ||||||
| 	var repo *models.Repository |  | ||||||
| 
 | 
 | ||||||
| 	ctx, cancel := context.WithCancel(graceful.GetManager().ShutdownContext()) | 	ctx, cancel := context.WithCancel(graceful.GetManager().ShutdownContext()) | ||||||
| 	defer cancel() | 	defer cancel() | ||||||
|  | @ -107,7 +106,7 @@ func runMigrateTask(t *models.Task) (err error) { | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	repo, err = migrations.MigrateRepository(ctx, t.Doer, t.Owner.Name, *opts, func(format string, args ...interface{}) { | 	t.Repo, err = migrations.MigrateRepository(ctx, t.Doer, t.Owner.Name, *opts, func(format string, args ...interface{}) { | ||||||
| 		message := models.TranslatableMessage{ | 		message := models.TranslatableMessage{ | ||||||
| 			Format: format, | 			Format: format, | ||||||
| 			Args:   args, | 			Args:   args, | ||||||
|  | @ -118,7 +117,7 @@ func runMigrateTask(t *models.Task) (err error) { | ||||||
| 		_ = t.UpdateCols("message") | 		_ = t.UpdateCols("message") | ||||||
| 	}) | 	}) | ||||||
| 	if err == nil { | 	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 | 		return | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue