summaryrefslogtreecommitdiff
path: root/lib/gitlab/bitbucket_server_import/importer.rb
diff options
context:
space:
mode:
authorFelipe Artur <fcardozo@gitlab.com>2019-05-06 19:45:17 +0000
committerSean McGivern <sean@gitlab.com>2019-05-06 19:45:17 +0000
commitc40bad741f963f0b3bf3868d485e419dbbf7b37c (patch)
treee41ea99f73a250154b8923eb2cca0ca1ce57ad61 /lib/gitlab/bitbucket_server_import/importer.rb
parentadc83d25a7ebf636941f72881a8828e6ebb5ad64 (diff)
downloadgitlab-ce-c40bad741f963f0b3bf3868d485e419dbbf7b37c.tar.gz
Fix issuables state_id nil when importing projects from GitHub
Issues and merge requests imported from GitHub are having state_id set to null. This fixes the GitHub project importer and schedule migrations to fix state_id.
Diffstat (limited to 'lib/gitlab/bitbucket_server_import/importer.rb')
-rw-r--r--lib/gitlab/bitbucket_server_import/importer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/bitbucket_server_import/importer.rb b/lib/gitlab/bitbucket_server_import/importer.rb
index 1d3ddeeb0f1..ff2694abd5e 100644
--- a/lib/gitlab/bitbucket_server_import/importer.rb
+++ b/lib/gitlab/bitbucket_server_import/importer.rb
@@ -201,6 +201,7 @@ module Gitlab
target_branch: Gitlab::Git.ref_name(pull_request.target_branch_name),
target_branch_sha: pull_request.target_branch_sha,
state: pull_request.state,
+ state_id: MergeRequest.available_states[pull_request.state],
author_id: author_id,
assignee_id: nil,
created_at: pull_request.created_at,