Commit b5511297 authored by Marcia Ramos's avatar Marcia Ramos

Merge branch 'patch-97' into 'master'

Fix Find & remove projects that are pending deletion command

See merge request gitlab-org/gitlab!30000
parents 022a05aa da46ef6c
...@@ -150,9 +150,9 @@ Project.update_all(visibility_level: 0) ...@@ -150,9 +150,9 @@ Project.update_all(visibility_level: 0)
# #
projects = Project.where(pending_delete: true) projects = Project.where(pending_delete: true)
projects.each do |p| projects.each do |p|
puts "Project name: #{p.id}" puts "Project ID: #{p.id}"
puts "Project name: #{p.name}" puts "Project name: #{p.name}"
puts "Repository path: #{p.repository.storage_path}" puts "Repository path: #{p.repository.full_path}"
end end
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment