diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-18 09:45:46 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-18 09:45:46 +0000 |
commit | a7b3560714b4d9cc4ab32dffcd1f74a284b93580 (patch) | |
tree | 7452bd5c3545c2fa67a28aa013835fb4fa071baf /doc/development/transient | |
parent | ee9173579ae56a3dbfe5afe9f9410c65bb327ca7 (diff) | |
download | gitlab-ce-a7b3560714b4d9cc4ab32dffcd1f74a284b93580.tar.gz |
Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42
Diffstat (limited to 'doc/development/transient')
-rw-r--r-- | doc/development/transient/prevention-patterns.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/transient/prevention-patterns.md b/doc/development/transient/prevention-patterns.md index c517a6bcd54..93712b104e6 100644 --- a/doc/development/transient/prevention-patterns.md +++ b/doc/development/transient/prevention-patterns.md @@ -120,7 +120,7 @@ When there are 2 jobs being worked on at the same time, it is possible that the In this example, `Worker B` is meant to set the updated status. But `Worker A` calls `#update_state` a little too late. This can be avoided by utilizing either database locks or `Gitlab::ExclusiveLease`. This way, jobs will be -worked on one at a time. This also allows them to be marked as [idempotent](../sidekiq_style_guide.md#idempotent-jobs). +worked on one at a time. This also allows them to be marked as [idempotent](../sidekiq/idempotent_jobs.md). ### Retry mechanism handling |