git: 6225ae173185 - main - www/gitlab-ce: fix problem with upgraded sidekiq version 6.5.9
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 May 2023 17:04:51 UTC
The branch main has been updated by mfechner: URL: https://cgit.FreeBSD.org/ports/commit/?id=6225ae1731854190ed1ed89b49bfc3405bf35f10 commit 6225ae1731854190ed1ed89b49bfc3405bf35f10 Author: Matthias Fechner <mfechner@FreeBSD.org> AuthorDate: 2023-05-28 17:02:27 +0000 Commit: Matthias Fechner <mfechner@FreeBSD.org> CommitDate: 2023-05-28 17:03:50 +0000 www/gitlab-ce: fix problem with upgraded sidekiq version 6.5.9 from revision 013014feef0787c5168fd727d8d72a0322da7495 --- www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb b/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb index c8818844543b..ce56be8d52f7 100644 --- a/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb +++ b/www/gitlab-ce/files/patch-lib_gitlab_patch_sidekiq__cron__poller.rb @@ -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