Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/import_export/group/tree_saver.rb')
-rw-r--r--lib/gitlab/import_export/group/tree_saver.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/import_export/group/tree_saver.rb b/lib/gitlab/import_export/group/tree_saver.rb
index 0f588a55f9d..796b9258e57 100644
--- a/lib/gitlab/import_export/group/tree_saver.rb
+++ b/lib/gitlab/import_export/group/tree_saver.rb
@@ -42,7 +42,7 @@ module Gitlab
end
def serialize(group)
- ImportExport::JSON::StreamingSerializer.new(
+ ImportExport::Json::StreamingSerializer.new(
group,
group_tree,
json_writer,
@@ -64,7 +64,7 @@ module Gitlab
end
def json_writer
- @json_writer ||= ImportExport::JSON::NdjsonWriter.new(@full_path)
+ @json_writer ||= ImportExport::Json::NdjsonWriter.new(@full_path)
end
end
end