mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
Merge branch 'reduce-delete-delay' into 'master'
Reduce delay in destroying a project from 1-minute to immediately This 1-minute delay was causing confusion among customers. Was there a reason this needed to be 1 minute? See merge request !3997
This commit is contained in:
@@ -6,6 +6,7 @@ v 8.8.0 (unreleased)
|
||||
- Log to application.log when an admin starts and stops impersonating a user
|
||||
- Updated gitlab_git to 10.1.0
|
||||
- GitAccess#protected_tag? no longer loads all tags just to check if a single one exists
|
||||
- Reduce delay in destroying a project from 1-minute to immediately
|
||||
- Make build status canceled if any of the jobs was canceled and none failed
|
||||
- Upgrade Sidekiq to 4.1.2
|
||||
- Sanitize repo paths in new project error message
|
||||
|
||||
@@ -1039,4 +1039,11 @@ class Project < ActiveRecord::Base
|
||||
def wiki
|
||||
@wiki ||= ProjectWiki.new(self, self.owner)
|
||||
end
|
||||
|
||||
def schedule_delete!(user_id, params)
|
||||
# Queue this task for after the commit, so once we mark pending_delete it will run
|
||||
run_after_commit { ProjectDestroyWorker.perform_async(id, user_id, params) }
|
||||
|
||||
update_attribute(:pending_delete, true)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -7,9 +7,7 @@ module Projects
|
||||
DELETED_FLAG = '+deleted'
|
||||
|
||||
def pending_delete!
|
||||
project.update_attribute(:pending_delete, true)
|
||||
|
||||
ProjectDestroyWorker.perform_in(1.minute, project.id, current_user.id, params)
|
||||
project.schedule_delete!(current_user.id, params)
|
||||
end
|
||||
|
||||
def execute
|
||||
|
||||
Reference in New Issue
Block a user