Commit b5e0182d0aa07ec2bc0228d787bd7f73d206730a
1 parent
36ab7d2b
Exists in
master
and in
17 other branches
Make sure db:schema:load goes before db:migrate
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/recipes/default.rb
files/gitlab-cookbooks/gitlab/recipes/postgresql.rb
... | ... | @@ -153,5 +153,5 @@ execute "create #{db_name} database" do |
153 | 153 | user pg_user |
154 | 154 | not_if { !pg_helper.is_running? || pg_helper.database_exists?(db_name) } |
155 | 155 | retries 30 |
156 | - notifies :run, "execute[initialize database]" | |
156 | + notifies :run, "execute[initialize database]", :immediately | |
157 | 157 | end | ... | ... |