summaryrefslogtreecommitdiff
path: root/lib/gitlab/import_export
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2019-02-14 09:29:42 +0100
committerJames Lopez <james@jameslopez.es>2019-02-14 09:29:42 +0100
commit401a3bca40c390f62d09683c548962127205fb7f (patch)
tree382141980ca665f6df83ca23bc4ff68c383d6c30 /lib/gitlab/import_export
parent1322146bbf5c76403db10969f1af6540717b1cdf (diff)
downloadgitlab-ce-401a3bca40c390f62d09683c548962127205fb7f.tar.gz
Fix import_jid error on project import
Diffstat (limited to 'lib/gitlab/import_export')
-rw-r--r--lib/gitlab/import_export/shared.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/import_export/shared.rb b/lib/gitlab/import_export/shared.rb
index 947caaaefee..725c1101d70 100644
--- a/lib/gitlab/import_export/shared.rb
+++ b/lib/gitlab/import_export/shared.rb
@@ -61,7 +61,7 @@ module Gitlab
def log_base_data
{
importer: 'Import/Export',
- import_jid: @project&.import_state&.import_jid,
+ import_jid: @project&.import_state&.jid,
project_id: @project&.id,
project_path: @project&.full_path
}