debian-mirror-gitlab/app/services/repositories/shell_destroy_service.rb
2020-08-09 17:44:08 +05:30

16 lines
466 B
Ruby

# frozen_string_literal: true
class Repositories::ShellDestroyService < Repositories::BaseService
REPO_REMOVAL_DELAY = 5.minutes.to_i
STALE_REMOVAL_DELAY = REPO_REMOVAL_DELAY * 2
def execute(delay = REPO_REMOVAL_DELAY)
return success unless repository
GitlabShellWorker.perform_in(delay,
:remove_repository,
repository.shard,
removal_path)
end
end