Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1bd5896c
Commit
1bd5896c
authored
May 08, 2018
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't create import_state until project is persisted
parent
0eb74426
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
app/models/project.rb
app/models/project.rb
+8
-2
No files found.
app/models/project.rb
View file @
1bd5896c
...
...
@@ -661,9 +661,15 @@ class Project < ActiveRecord::Base
return
if
!
force
&&
(
self
[
:import_status
]
==
'none'
||
self
[
:import_status
].
nil?
)
return
unless
import_state
.
nil?
if
persisted?
create_import_state
(
import_state_args
)
update_column
(
:import_status
,
'none'
)
else
build_import_state
(
import_state_args
)
self
[
:import_status
]
=
'none'
end
end
def
import_schedule
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment