mirror of
https://github.com/discourse/discourse.git
synced 2025-09-12 21:10:47 +08:00
DEV: pin redis to version 4.0.1
Version 4.1.0 returns frozen hashes which conflict with our monkey patch We will follow up unpinning this later
This commit is contained in:
parent
8b88c738cf
commit
635bc72ec5
2 changed files with 11 additions and 3 deletions
10
Gemfile
10
Gemfile
|
@ -31,7 +31,15 @@ gem 'mini_mime'
|
|||
gem 'mini_suffix'
|
||||
|
||||
gem 'hiredis'
|
||||
gem 'redis', require: ["redis", "redis/connection/hiredis"]
|
||||
|
||||
# holding off redis upgrade temporarily as it is having issues with our current
|
||||
# freedom patch, we will follow this up.
|
||||
#
|
||||
# FrozenError: can't modify frozen Hash
|
||||
# /var/www/discourse/vendor/bundle/ruby/2.5.0/gems/redis-4.1.0/lib/redis/client.rb:93:in `delete'
|
||||
# /var/www/discourse/vendor/bundle/ruby/2.5.0/gems/redis-4.1.0/lib/redis/client.rb:93:in `initialize'
|
||||
# /var/www/discourse/lib/freedom_patches/redis.rb:7:in `initialize'
|
||||
gem 'redis', '4.0.1', require: ["redis", "redis/connection/hiredis"]
|
||||
gem 'redis-namespace'
|
||||
|
||||
gem 'active_model_serializers', '~> 0.8.3'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue