summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/importer/note_importer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/github_import/importer/note_importer.rb')
-rw-r--r--lib/gitlab/github_import/importer/note_importer.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/gitlab/github_import/importer/note_importer.rb b/lib/gitlab/github_import/importer/note_importer.rb
index 1410006af26..69b7b2c2a38 100644
--- a/lib/gitlab/github_import/importer/note_importer.rb
+++ b/lib/gitlab/github_import/importer/note_importer.rb
@@ -36,6 +36,9 @@ module Gitlab
# We're using bulk_insert here so we can bypass any validations and
# callbacks. Running these would result in a lot of unnecessary SQL
# queries being executed when importing large projects.
+ # Note: if you're going to replace `legacy_bulk_insert` with something that trigger callback
+ # to generate HTML version - you also need to regenerate it in
+ # Gitlab::GithubImport::Importer::NoteAttachmentsImporter.
ApplicationRecord.legacy_bulk_insert(Note.table_name, [attributes]) # rubocop:disable Gitlab/BulkInsert
rescue ActiveRecord::InvalidForeignKey
# It's possible the project and the issue have been deleted since