gitlab-org--gitlab-foss/app/workers/git_garbage_collect_worker.rb
Stan Hu 0d4b1bb752 Refresh branch cache after git gc
Possible workaround for #15392
2016-07-13 06:49:58 -07:00

16 lines
509 B
Ruby

class GitGarbageCollectWorker
include Sidekiq::Worker
include Gitlab::ShellAdapter
sidekiq_options queue: :gitlab_shell, retry: false
def perform(project_id)
project = Project.find(project_id)
gitlab_shell.gc(project.repository_storage_path, project.path_with_namespace)
# Refresh the branch cache in case garbage collection caused a ref lookup to fail
project.repository.after_create_branch
project.repository.branch_names
project.repository.has_visible_content?
end
end