Skip to content

Commit 394efee

Browse files
committed
Fix concurrent-ruby version in Ruby 2.5/2.6 CI
active_support/logger_thread_safe_level.rb in Rails 6.1 references Logger without requiring it, which only worked because concurrent-ruby was requiring it. concurrent-ruby 1.3.5 dropped the logger require, which broke active_support.
1 parent 066e256 commit 394efee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.ci.gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ elsif RUBY_VERSION < '2.4.0'
3737
gem 'activemodel', '<6.0.0'
3838
elsif RUBY_VERSION < '2.7.0'
3939
gem 'activemodel', '<7.0.0'
40+
gem 'concurrent-ruby', '1.3.4'
4041
else
4142
gem 'activemodel'
4243
end

0 commit comments

Comments
 (0)