Skip to content

Commit

Permalink
Downgrade sidekiq (#1084)
Browse files Browse the repository at this point in the history
sidekiq 6 is not compatible with the way we are using capistrano-sidekiq, resulting in failed deployments even though everything installed successfully in development and CI.

More info:
seuros/capistrano-sidekiq#224
  • Loading branch information
sourcefilter authored Apr 27, 2022
1 parent d943fb4 commit 66d6003
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gem 'rails', '~> 5.2'
gem 'rollbar' # Error reporting tool
gem 'rsolr', '>= 1.0'
gem 'sassc-rails', '>= 2.1.2' # SASS -> CSS compiler
gem 'sidekiq', '~> 6.4'
gem 'sidekiq', '~> 5.2'
gem 'solrizer', '>= 4.1.0'
gem 'sprockets', '>= 3.7.2', '< 4'
gem 'turbolinks', '~> 5' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
Expand Down
13 changes: 8 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ GEM
nio4r (~> 2.0)
racc (1.6.0)
rack (2.2.3)
rack-protection (2.2.0)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails (5.2.7)
Expand Down Expand Up @@ -332,7 +334,7 @@ GEM
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
redis (4.6.0)
redis (4.5.1)
responders (3.0.1)
actionpack (>= 5.0)
railties (>= 5.0)
Expand Down Expand Up @@ -387,10 +389,11 @@ GEM
selenium-webdriver (3.142.7)
childprocess (>= 0.5, < 4.0)
rubyzip (>= 1.2.2)
sidekiq (6.4.1)
connection_pool (>= 2.2.2)
sidekiq (5.2.10)
connection_pool (~> 2.2, >= 2.2.2)
rack (~> 2.0)
redis (>= 4.2.0)
rack-protection (>= 1.5.0)
redis (~> 4.5, < 4.6.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
Expand Down Expand Up @@ -510,7 +513,7 @@ DEPENDENCIES
rubocop
sassc-rails (>= 2.1.2)
selenium-webdriver (>= 3.142.3)
sidekiq (~> 6.4)
sidekiq (~> 5.2)
solrizer (>= 4.1.0)
spring
spring-commands-rspec
Expand Down

0 comments on commit 66d6003

Please sign in to comment.