Skip to content

Commit

Permalink
www/gitlab-ce: fix problem with upgraded sidekiq version 6.5.9
Browse files Browse the repository at this point in the history
from revision 013014f
  • Loading branch information
mfechner committed May 28, 2023
1 parent 896e7bf commit 6225ae1
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,11 +1,11 @@
--- lib/gitlab/patch/sidekiq_cron_poller.rb.orig 2023-01-10 20:21:22 UTC
--- lib/gitlab/patch/sidekiq_cron_poller.rb.orig 2023-05-22 18:44:12 UTC
+++ lib/gitlab/patch/sidekiq_cron_poller.rb
@@ -7,7 +7,7 @@
require 'sidekiq/version'
require 'sidekiq/cron/version'

-if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.7')
+if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.8')
+if Gem::Version.new(Sidekiq::VERSION) != Gem::Version.new('6.5.9')
raise 'New version of sidekiq detected, please remove or update this patch'
end

0 comments on commit 6225ae1

Please sign in to comment.