mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix Migration 136 (be less aggressive to open pulls missing git files) (#11072)
* be less aggressife to open pulls when migrating * remove unused
This commit is contained in:
		| @@ -42,12 +42,6 @@ func addCommitDivergenceToPulls(x *xorm.Engine) error { | ||||
| 		for _, pr := range results { | ||||
| 			divergence, err := pull_service.GetDiverging(pr) | ||||
| 			if err != nil { | ||||
| 				if err = pr.LoadIssue(); err != nil { | ||||
| 					return fmt.Errorf("pr.LoadIssue()[%d]: %v", pr.ID, err) | ||||
| 				} | ||||
| 				if !pr.Issue.IsClosed { | ||||
| 					return fmt.Errorf("GetDiverging: %v", err) | ||||
| 				} | ||||
| 				log.Warn("Could not recalculate Divergence for pull: %d", pr.ID) | ||||
| 				pr.CommitsAhead = 0 | ||||
| 				pr.CommitsBehind = 0 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user