Fix import issues method

parent 785459d1
...@@ -79,13 +79,13 @@ module Gitlab ...@@ -79,13 +79,13 @@ module Gitlab
created_at: issue.created_at, created_at: issue.created_at,
updated_at: issue.updated_at updated_at: issue.updated_at
) )
rescue StandardError => e
errors << { type: :issue, iid: issue.iid, errors: e.message }
end
gitlab_issue.labels << @labels[label_name] gitlab_issue.labels << @labels[label_name]
import_issue_comments(issue, gitlab_issue) if gitlab_issue.persisted? import_issue_comments(issue, gitlab_issue) if gitlab_issue.persisted?
rescue StandardError => e
errors << { type: :issue, iid: issue.iid, errors: e.message }
end
end end
end 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