ruby-gitlab-sidekiq-fetcher 0.9.0-2 source package in Ubuntu

Changelog

ruby-gitlab-sidekiq-fetcher (0.9.0-2) unstable; urgency=medium

  * Reupload to unstable
  * Update minimum version of ruby-json to 2.5
  * Drop obsolete X{S,B}-Ruby-Versions fields

 -- Pirate Praveen <email address hidden>  Wed, 14 Jun 2023 12:46:00 +0530

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-gitlab-sidekiq-fetcher_0.9.0-2.dsc 2.2 KiB 15dcdda0db3369fccdc9da7fac96282728306fac33377e392c344397510fbd1c
ruby-gitlab-sidekiq-fetcher_0.9.0.orig.tar.gz 16.7 KiB 09b3545905490437707c9f6bbd991ca25e79c54e06e430795ffc2dc2362e8fb7
ruby-gitlab-sidekiq-fetcher_0.9.0-2.debian.tar.xz 2.3 KiB 5983fd01c37cb859d4fd2769e9b2a6ec76ff541971b146f06129e3e367214ab5

Available diffs

No changes file available.

Binary packages built by this source

ruby-gitlab-sidekiq-fetcher: Reliable fetch extension for Sidekiq

 This library is an extension to Sidekiq that adds support for reliable fetches
 from Redis. It's based on sidekiq-reliable-fetch.
 .
 There are two strategies implemented: Reliable fetch using `rpoplpush` command
 and semi-reliable fetch that uses regular `brpop` and `lpush` to pick the job
 and put it to working queue. The main benefit of "Reliable" strategy is that
 `rpoplpush` is atomic, eliminating a race condition in which jobs can be lost.
 .
 This package includes gitlab's fork of sidekiq-reliable-push.