Commit e2b7880b authored by James Lopez's avatar James Lopez

fix spec

parent fa2e3162
......@@ -29,6 +29,18 @@ module Gitlab
Dir["#{uploads_export_path}/**/*"].each do |upload|
next if File.directory?(upload)
add_upload(upload)
end
true
rescue => e
@shared.error(e)
false
end
private
def add_upload(upload)
secret, identifier = upload.split('/').last(2)
uploader_context = {
......@@ -38,12 +50,6 @@ module Gitlab
UploadService.new(@project, File.open(upload, 'r'), FileUploader, uploader_context).execute
end
rescue => e
@shared.error(e)
false
end
private
def copy_from_object_storage
return unless Gitlab::ImportExport.object_storage?
......
......@@ -9,6 +9,8 @@ module Gitlab
).restore
elsif File.directory?(uploads_export_path)
copy_files(uploads_export_path, uploads_path)
true
else
true
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