Commit ab774d13 authored by James Reed's avatar James Reed Committed by Achilleas Pipinellis

Fix erroneous pending migrations command

parent 93dedb31
...@@ -98,7 +98,7 @@ that can process jobs in the `background_migration` queue. ...@@ -98,7 +98,7 @@ that can process jobs in the `background_migration` queue.
```shell ```shell
sudo gitlab-rails runner -e production 'puts Gitlab::BackgroundMigration.remaining' sudo gitlab-rails runner -e production 'puts Gitlab::BackgroundMigration.remaining'
sudo gitlab-rails runner -e production 'puts Gitlab::BackgroundMigration.pending' sudo gitlab-rails runner -e production 'puts Gitlab::Database::BackgroundMigrationJob.pending'
``` ```
**For installations from source:** **For installations from source:**
...@@ -106,7 +106,7 @@ sudo gitlab-rails runner -e production 'puts Gitlab::BackgroundMigration.pending ...@@ -106,7 +106,7 @@ sudo gitlab-rails runner -e production 'puts Gitlab::BackgroundMigration.pending
```shell ```shell
cd /home/git/gitlab cd /home/git/gitlab
sudo -u git -H bundle exec rails runner -e production 'puts Gitlab::BackgroundMigration.remaining' sudo -u git -H bundle exec rails runner -e production 'puts Gitlab::BackgroundMigration.remaining'
sudo -u git -H bundle exec rails runner -e production 'puts Gitlab::BackgroundMigration.pending' sudo -u git -H bundle exec rails runner -e production 'puts Gitlab::Database::BackgroundMigrationJob.pending'
``` ```
### Batched background migrations ### Batched background migrations
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment