Skip to content
Snippets Groups Projects
Commit e64589a3 authored by Kamil Trzcińśki's avatar Kamil Trzcińśki
Browse files

Refresh commit count after repository head changes

parent 80fea82f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1378,6 +1378,7 @@ class Project < ActiveRecord::Base
repository.raw_repository.write_ref('HEAD', "refs/heads/#{branch}")
repository.copy_gitattributes(branch)
repository.after_change_head
ProjectCacheWorker.perform_async(self.id, [], [:commit_count])
reload_default_branch
else
errors.add(:base, "Could not change HEAD: branch '#{branch}' does not exist")
Loading
Loading
Loading
Loading
@@ -27,6 +27,7 @@ class ProjectCacheWorker
# rubocop: enable CodeReuse/ActiveRecord
 
def update_statistics(project, statistics = [])
return if Gitlab::Database.read_only?
return unless try_obtain_lease_for(project.id, :update_statistics)
 
Rails.logger.info("Updating statistics for project #{project.id}")
Loading
Loading
---
title: Refresh commit count after repository head changes
merge_request: 26473
author:
type: fixed
Loading
Loading
@@ -2388,6 +2388,12 @@ describe Project do
project.change_head(project.default_branch)
end
 
it 'updates commit count' do
expect(ProjectCacheWorker).to receive(:perform_async).with(project.id, [], [:commit_count])
project.change_head(project.default_branch)
end
it 'copies the gitattributes' do
expect(project.repository).to receive(:copy_gitattributes).with(project.default_branch)
project.change_head(project.default_branch)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment