Move registry destroy out of project transaction

This commit is contained in:
Stan Hu 2018-09-19 05:37:02 -07:00
parent a1912ccc89
commit 311beef242
5 changed files with 18 additions and 9 deletions

View File

@ -8,8 +8,6 @@ class ContainerRepository < ActiveRecord::Base
delegate :client, to: :registry
before_destroy :delete_tags!
# rubocop: disable CodeReuse/ServiceClass
def registry
@registry ||= begin

View File

@ -133,11 +133,11 @@ module Projects
end
def attempt_destroy_transaction(project)
Project.transaction do
unless remove_legacy_registry_tags
raise_error('Failed to remove some tags in project container registry. Please try again or contact administrator.')
end
unless remove_registry_tags
raise_error('Failed to remove some tags in project container registry. Please try again or contact administrator.')
end
Project.transaction do
log_destroy_event
trash_repositories!
@ -156,6 +156,17 @@ module Projects
log_info("Attempting to destroy #{project.full_path} (#{project.id})")
end
def remove_registry_tags
return false unless remove_legacy_registry_tags
project.container_repositories.find_each do |container_repository|
service = Projects::ContainerRepository::DestroyService.new(project, current_user)
service.execute(container_repository)
end
true
end
##
# This method makes sure that we correctly remove registry tags
# for legacy image repository (when repository path equals project path).

View File

@ -39,7 +39,7 @@ describe "Container Registry", :js do
visit_container_registry
expect_any_instance_of(ContainerRepository)
.to receive(:delete_tags!).twice.and_return(true)
.to receive(:delete_tags!).and_return(true)
click_on(class: 'js-remove-repo')
end

View File

@ -33,7 +33,7 @@ describe Projects::ContainerRepository::DestroyService do
end
it 'deletes the repository' do
expect(repository).to receive(:delete_tags!).twice.and_call_original
expect(repository).to receive(:delete_tags!).and_call_original
expect { described_class.new(project, user).execute(repository) }.to change { ContainerRepository.all.count }.by(-1)
end
end

View File

@ -204,7 +204,7 @@ describe Projects::DestroyService do
context 'when image repository deletion fails' do
it 'raises an exception' do
expect_any_instance_of(ContainerRepository)
.to receive(:delete_tags!).and_return(false)
.to receive(:delete_tags!).and_raise(RuntimeError)
expect(destroy_project(project, user)).to be false
end