Skip to content
Snippets Groups Projects
  1. Feb 17, 2025
  2. Feb 05, 2025
  3. Jan 13, 2025
  4. Oct 29, 2024
  5. Apr 28, 2024
  6. Feb 27, 2024
  7. Jan 24, 2024
  8. Dec 06, 2023
  9. Sep 21, 2022
  10. May 29, 2022
  11. Oct 26, 2021
  12. Sep 13, 2021
    • Sean McGivern's avatar
      Add worker_class argument to Sidekiq queues APIs · 63979ec0
      Sean McGivern authored
      These APIs allow you to delete Sidekiq jobs from a queue. We now support
      having multiple worker classes use the same queue, so we need an extra
      argument to support that case - otherwise it would be possible to delete
      jobs from a less-problematic worker when just meaning to target a
      particular worker.
      
      Changelog: changed
      63979ec0
  13. Apr 22, 2021
  14. Jan 28, 2021
  15. Nov 23, 2020
    • Achilleas Pipinellis's avatar
      Update handbook URL for Technical Writers assignments · 2dc1b3be
      Achilleas Pipinellis authored
      The previous URL had two drawbacks:
      
      1. It didn't match what the title was about (`Assignments to DevOps
         Stages and Groups`, and the anchor was `#designated-technical-writers`).
      2. It didn't account for the other sections, like development and API
         guidelines.
      2dc1b3be
  16. Oct 26, 2020
  17. Oct 15, 2020
  18. Sep 16, 2020
  19. Jul 23, 2020
  20. May 27, 2020
  21. Mar 06, 2020
  22. Feb 28, 2020
    • Sean McGivern's avatar
      API endpoint to remove jobs from Sidekiq based on metadata · 5b4fe788
      Sean McGivern authored
      This API endpoint uses job metadata to remove jobs from a queue. It can
      only be used by admins, and deletes as many jobs as it can in 30
      seconds. If it exceeds 30 seconds, it returns a flag indicating that the
      user should try again to finish processing the queue.
      
      (Because of the way Sidekiq queues work, it can't resume where it left
      off, so you just have to start from scratch each time.)
      
      By default, it's implemented in GraphQL, but there's also a matching
      REST endpoint for convenience.
      5b4fe788
Loading