mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 16:01:32 +01:00 
			
		
		
		
	Response for context on retry database connection (#9444)
This commit is contained in:
		
							parent
							
								
									e2fc0a0dfd
								
							
						
					
					
						commit
						050a8af424
					
				| @ -6,6 +6,7 @@ package routers | ||||
| 
 | ||||
| import ( | ||||
| 	"context" | ||||
| 	"fmt" | ||||
| 	"strings" | ||||
| 	"time" | ||||
| 
 | ||||
| @ -57,6 +58,11 @@ func NewServices() { | ||||
| func initDBEngine(ctx context.Context) (err error) { | ||||
| 	log.Info("Beginning ORM engine initialization.") | ||||
| 	for i := 0; i < setting.Database.DBConnectRetries; i++ { | ||||
| 		select { | ||||
| 		case <-ctx.Done(): | ||||
| 			return fmt.Errorf("Aborted due to shutdown:\nin retry ORM engine initialization") | ||||
| 		default: | ||||
| 		} | ||||
| 		log.Info("ORM engine initialization attempt #%d/%d...", i+1, setting.Database.DBConnectRetries) | ||||
| 		if err = models.NewEngine(ctx, migrations.Migrate); err == nil { | ||||
| 			break | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user