mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Fixes indexed repos keeping outdated indexes when files grow too large (#7712)
This commit is contained in:
		
							parent
							
								
									7d9a13035e
								
							
						
					
					
						commit
						4fe490f062
					
				@ -199,7 +199,7 @@ func addUpdate(update fileUpdate, repo *Repository, batch rupture.FlushingBatch)
 | 
				
			|||||||
	if size, err := strconv.Atoi(strings.TrimSpace(stdout)); err != nil {
 | 
						if size, err := strconv.Atoi(strings.TrimSpace(stdout)); err != nil {
 | 
				
			||||||
		return fmt.Errorf("Misformatted git cat-file output: %v", err)
 | 
							return fmt.Errorf("Misformatted git cat-file output: %v", err)
 | 
				
			||||||
	} else if int64(size) > setting.Indexer.MaxIndexerFileSize {
 | 
						} else if int64(size) > setting.Indexer.MaxIndexerFileSize {
 | 
				
			||||||
		return nil
 | 
							return addDelete(update.Filename, repo, batch)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	fileContents, err := git.NewCommand("cat-file", "blob", update.BlobSha).
 | 
						fileContents, err := git.NewCommand("cat-file", "blob", update.BlobSha).
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user