Fix bug where destroying a namespace would not always destroy projects
There is a race condition in DestroyGroupService now that projects are deleted asynchronously: 1. User attempts to delete group 2. DestroyGroupService iterates through all projects and schedules a Sidekiq job to delete each Project 3. DestroyGroupService destroys the Group, leaving all its projects without a namespace 4. Projects::DestroyService runs later but the can?(current_user, :remove_project) is `false` because the user no longer has permission to destroy projects with no namespace. 5. This leaves the project in pending_delete state with no namespace/group. Projects without a namespace or group also adds another problem: it's not possible to destroy the container registry tags, since container_registry_path_with_namespace is the wrong value. The fix is to destroy the group asynchronously and to run execute directly on Projects::DestroyService. Closes #17893
显示
- CHANGELOG 1 个添加, 0 个删除CHANGELOG
- app/controllers/admin/groups_controller.rb 2 个添加, 2 个删除app/controllers/admin/groups_controller.rb
- app/controllers/groups_controller.rb 2 个添加, 2 个删除app/controllers/groups_controller.rb
- app/models/namespace.rb 2 个添加, 0 个删除app/models/namespace.rb
- app/services/delete_user_service.rb 6 个添加, 1 个删除app/services/delete_user_service.rb
- app/services/destroy_group_service.rb 13 个添加, 3 个删除app/services/destroy_group_service.rb
- app/workers/group_destroy_worker.rb 17 个添加, 0 个删除app/workers/group_destroy_worker.rb
- db/migrate/20140407135544_fix_namespaces.rb 8 个添加, 2 个删除db/migrate/20140407135544_fix_namespaces.rb
- db/migrate/20160805041956_add_deleted_at_to_namespaces.rb 12 个添加, 0 个删除db/migrate/20160805041956_add_deleted_at_to_namespaces.rb
- db/schema.rb 2 个添加, 0 个删除db/schema.rb
- spec/controllers/admin/groups_controller_spec.rb 24 个添加, 0 个删除spec/controllers/admin/groups_controller_spec.rb
- spec/controllers/groups_controller_spec.rb 29 个添加, 0 个删除spec/controllers/groups_controller_spec.rb
- spec/requests/api/users_spec.rb 2 个添加, 0 个删除spec/requests/api/users_spec.rb
- spec/services/delete_user_service_spec.rb 4 个添加, 2 个删除spec/services/delete_user_service_spec.rb
- spec/services/destroy_group_service_spec.rb 36 个添加, 22 个删除spec/services/destroy_group_service_spec.rb
- spec/workers/group_destroy_worker_spec.rb 19 个添加, 0 个删除spec/workers/group_destroy_worker_spec.rb
加载中
想要评论请 注册 或 登录