Use GitlabShellWorker.perform_async for housekeeping
This commit is contained in:
parent
839aae0e47
commit
d4690af8bc
2 changed files with 3 additions and 7 deletions
|
@ -172,14 +172,10 @@ class ProjectsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def housekeeping
|
def housekeeping
|
||||||
status = ::Projects::HousekeepingService.new(@project).execute
|
::Projects::HousekeepingService.new(@project).execute
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
if status
|
flash[:notice] = "Housekeeping successfully started."
|
||||||
flash[:notice] = "Housekeeping finished successfully."
|
|
||||||
else
|
|
||||||
flash[:alert] = "Housekeeping failed."
|
|
||||||
end
|
|
||||||
format.html { redirect_to project_path(@project) }
|
format.html { redirect_to project_path(@project) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,7 +14,7 @@ module Projects
|
||||||
end
|
end
|
||||||
|
|
||||||
def execute
|
def execute
|
||||||
gitlab_shell.gc(@project.path_with_namespace)
|
GitlabShellWorker.perform_async(:gc, @project.path_with_namespace)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue