mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 00:02:20 -05:00 
			
		
		
		
	Make sure to reset commit count in the cache on mirror syncing (#4720)
* Make sure to reset commit count in the cache on mirror syncing * reset count of commits in all branches
This commit is contained in:
		
							parent
							
								
									6ca8fbd2f9
								
							
						
					
					
						commit
						33bc2ebdfa
					
				@ -9,6 +9,7 @@ import (
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"code.gitea.io/git"
 | 
			
		||||
	"code.gitea.io/gitea/modules/cache"
 | 
			
		||||
	"code.gitea.io/gitea/modules/log"
 | 
			
		||||
	"code.gitea.io/gitea/modules/process"
 | 
			
		||||
	"code.gitea.io/gitea/modules/setting"
 | 
			
		||||
@ -180,6 +181,16 @@ func (m *Mirror) runSync() bool {
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	branches, err := m.Repo.GetBranches()
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Error(4, "GetBranches: %v", err)
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for i := range branches {
 | 
			
		||||
		cache.Remove(m.Repo.GetCommitsCountCacheKey(branches[i].Name, true))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	m.UpdatedUnix = util.TimeStampNow()
 | 
			
		||||
	return true
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user