summaryrefslogtreecommitdiff
path: root/app/services/projects/import_export/export_service.rb
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-05-11 14:51:25 +0200
committerJames Lopez <james@jameslopez.es>2016-05-11 14:51:25 +0200
commitcffae0d22ee159b78f66eb68cae9df4bcb9e83e5 (patch)
tree46125f3c5b1717560ad377f1f08ca173a32f7474 /app/services/projects/import_export/export_service.rb
parent49e6fc40b9d23b4081139a3ad141722a6b1f7cfc (diff)
downloadgitlab-ce-cffae0d22ee159b78f66eb68cae9df4bcb9e83e5.tar.gz
fixing more export problems
Diffstat (limited to 'app/services/projects/import_export/export_service.rb')
-rw-r--r--app/services/projects/import_export/export_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/projects/import_export/export_service.rb b/app/services/projects/import_export/export_service.rb
index 87a259ed15a..e6eb6f915b0 100644
--- a/app/services/projects/import_export/export_service.rb
+++ b/app/services/projects/import_export/export_service.rb
@@ -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