Commit d2500647 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'sh-decrease-web-hook-log-retries' into 'master'

Decrease WebHooks::LogExecutionWorker retries

See merge request gitlab-org/gitlab!69834
parents 5ccf995a dfeb0e69
...@@ -7,6 +7,8 @@ module WebHooks ...@@ -7,6 +7,8 @@ module WebHooks
data_consistency :always data_consistency :always
feature_category :integrations feature_category :integrations
urgency :low urgency :low
sidekiq_options retry: 3
loggable_arguments 0, 2, 3
idempotent! idempotent!
......
...@@ -452,6 +452,7 @@ RSpec.describe 'Every Sidekiq worker' do ...@@ -452,6 +452,7 @@ RSpec.describe 'Every Sidekiq worker' do
'WaitForClusterCreationWorker' => 3, 'WaitForClusterCreationWorker' => 3,
'WebHookWorker' => 4, 'WebHookWorker' => 4,
'WebHooks::DestroyWorker' => 3, 'WebHooks::DestroyWorker' => 3,
'WebHooks::LogExecutionWorker' => 3,
'Wikis::GitGarbageCollectWorker' => false, 'Wikis::GitGarbageCollectWorker' => false,
'X509CertificateRevokeWorker' => 3 'X509CertificateRevokeWorker' => 3
} }
......
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