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/github_import/importer/issue_importer.rb')
-rw-r--r--lib/gitlab/github_import/importer/issue_importer.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/gitlab/github_import/importer/issue_importer.rb b/lib/gitlab/github_import/importer/issue_importer.rb
index a537841ecf3..3cf67d7df96 100644
--- a/lib/gitlab/github_import/importer/issue_importer.rb
+++ b/lib/gitlab/github_import/importer/issue_importer.rb
@@ -29,8 +29,8 @@ module Gitlab
def execute
Issue.transaction do
if (issue_id = create_issue)
- create_assignees(issue_id)
issuable_finder.cache_database_id(issue_id)
+ create_assignees(issue_id)
update_search_data(issue_id)
end
end
@@ -64,9 +64,6 @@ module Gitlab
issue.validate!
insert_and_return_id(attributes, project.issues)
- rescue ActiveRecord::InvalidForeignKey
- # It's possible the project has been deleted since scheduling this
- # job. In this case we'll just skip creating the issue.
end
# Stores all issue assignees in the database.