Don't touch Issue/Merge Request when importing GitHub comments
This commit is contained in:
parent
52daddc0b7
commit
80c4f10937
1 changed files with 8 additions and 6 deletions
|
@ -152,12 +152,14 @@ module Gitlab
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_comments(issuable, comments)
|
def create_comments(issuable, comments)
|
||||||
comments.each do |raw|
|
ActiveRecord::Base.no_touching do
|
||||||
begin
|
comments.each do |raw|
|
||||||
comment = CommentFormatter.new(project, raw)
|
begin
|
||||||
issuable.notes.create!(comment.attributes)
|
comment = CommentFormatter.new(project, raw)
|
||||||
rescue => e
|
issuable.notes.create!(comment.attributes)
|
||||||
errors << { type: :comment, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
|
rescue => e
|
||||||
|
errors << { type: :comment, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue