Commit bae719df664714c20c0157944337a9857bd2d91f

Authored by Snooze-
1 parent 8315f363

Create satellites during update to 6.0. Fix #4938

Satellites for projects that were located in the root namespace needs to be recreated once they've been migrated to the creator’s namespace during the upgrade process.

This can be achieved by running the sudo -u git -H bundle exec rake gitlab:satellites:create RAILS_ENV=production during the update process.

The command has been added to the 5.4 to 6.0 update doc.
Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
doc/update/5.4-to-6.0.md
... ... @@ -70,6 +70,7 @@ sudo -u git -H bundle exec rake migrate_groups RAILS_ENV=production
70 70 sudo -u git -H bundle exec rake migrate_global_projects RAILS_ENV=production
71 71 sudo -u git -H bundle exec rake migrate_keys RAILS_ENV=production
72 72 sudo -u git -H bundle exec rake migrate_inline_notes RAILS_ENV=production
  73 +sudo -u git -H bundle exec rake gitlab:satellites:create RAILS_ENV=production
73 74  
74 75 # Clear redis cache
75 76 sudo -u git -H bundle exec rake cache:clear RAILS_ENV=production
... ...