提交 cffae0d2 编写于 作者: J James Lopez

fixing more export problems

上级 49e6fc40
......@@ -27,7 +27,7 @@ module Projects
end
def notify_worker
raise Gitlab::ImportExport::Error @shared.errors.join(', ')
raise Gitlab::ImportExport::Error.new(@shared.errors.join(', '))
end
end
end
......
class ProjectExportWorker
include Sidekiq::Worker
# TODO: enabled retry - disabled for QA purposes
# TODO: enable retry - disabled for QA purposes
sidekiq_options queue: :gitlab_shell, retry: false
def perform(current_user_id, project_id)
current_user = User.find(current_user_id)
project = Project.find(project_id)
::Projects::ImportExport::ExportService.new(project, current_user).execute
# TODO : Handle errors
end
end
......@@ -13,7 +13,7 @@ module Gitlab
def save
if compress_and_save
remove_storage_path
remove_export_path
Rails.logger.info("Saved project export #{archive_file}")
archive_file
else
......@@ -27,15 +27,15 @@ module Gitlab
private
def compress_and_save
tar_czf(archive: archive_file, dir: @shared.storage_path)
tar_czf(archive: archive_file, dir: @shared.export_path)
end
def remove_storage_path
FileUtils.rm_rf(@shared.storage_path)
def remove_export_path
FileUtils.rm_rf(@shared.export_path)
end
def archive_file
@archive_file ||= File.join(@shared.storage_path, '..', "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_project_export.tar.gz")
@archive_file ||= File.join(@shared.export_path, '..', "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_project_export.tar.gz")
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册