Skip to content

Resolve "Increase retry count for the SyncSeatLinkRequestWorker"

Tyler Amos requested to merge 221579-syncseatlinkrequestworker-retry-count into master

What does this MR do?

This MR changes the retry count for the SyncSeatLinkRequestWorker from the default of 3 to 20. You can see a breakdown of the retry waiting times on this Sidekiq wiki page.

This will allow the worker to retry across multiple days in the event that there is a connectivity issue like recently happened between the customers app and the license app.

Screenshots

Before:

pry(main)> SyncSeatLinkRequestWorker.sidekiq_options
=> {"retry"=>3, "queue"=>"sync_seat_link_request", :backtrace=>true}

After:

pry(main)> SyncSeatLinkRequestWorker.sidekiq_options
=> {"retry"=>20, "queue"=>"sync_seat_link_request", :backtrace=>true}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team

Closes #221579 (closed)

Edited by Tyler Amos

Merge request reports