Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-25 21:09:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-25 21:09:49 +0300
commiteccc2ec564f427460be5ffa6f9a6fb25f3f7fe6d (patch)
treeb93ae42093f1127ef3ff1732987c9da265f48615 /doc/development/sidekiq/compatibility_across_updates.md
parent02e4b2d0043b416314ffb76694aff200584352d5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/sidekiq/compatibility_across_updates.md')
-rw-r--r--doc/development/sidekiq/compatibility_across_updates.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/sidekiq/compatibility_across_updates.md b/doc/development/sidekiq/compatibility_across_updates.md
index 1d8b9d15cc6..5ca6bf773fc 100644
--- a/doc/development/sidekiq/compatibility_across_updates.md
+++ b/doc/development/sidekiq/compatibility_across_updates.md
@@ -164,7 +164,7 @@ To remove a worker class, follow these steps over two minor releases:
1. Add a migration (not a post-deployment migration) that uses `sidekiq_remove_jobs`:
```ruby
- class RemoveMyDeprecatedWorkersJobInstances < Gitlab::Database::Migration[2.0]
+ class RemoveMyDeprecatedWorkersJobInstances < Gitlab::Database::Migration[2.1]
DEPRECATED_JOB_CLASSES = %w[
MyDeprecatedWorkerOne
MyDeprecatedWorkerTwo