Commit 9bb9267482cabaaaed70650929e4521527025494
Exists in
spb-stable
and in
3 other branches
Merge branch 'development_seed_fix' into 'master'
Development Project Seed Data Fix After this commit https://dev.gitlab.org/gitlab/gitlabhq/commit/1d2bdb4d5880bb1ad39b62c81ff2971aa0cb3798 Contexts were replaced with Services. One context remained in the seed data which means development seeding will fail. @dzaporozhets Do we want to backport this to 6.5 too? /cc @jacobvosmaer @sytse
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
db/fixtures/development/04_project.rb
... | ... | @@ -40,7 +40,7 @@ project_urls.each_with_index do |url, i| |
40 | 40 | description: Faker::Lorem.sentence |
41 | 41 | } |
42 | 42 | |
43 | - project = Projects::CreateContext.new(User.first, params).execute | |
43 | + project = Projects::CreateService.new(User.first, params).execute | |
44 | 44 | |
45 | 45 | if project.valid? |
46 | 46 | print '.' | ... | ... |