Skip to content

Commit a519a4a

Browse files
committed
Merge pull request #3821 from DataDog/tonycthsu/fix-integration
Pin passenger version for integration test
1 parent 36870da commit a519a4a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

integration/apps/rack/Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ source "https://rubygems.org"
44

55
gem 'puma'
66
gem 'unicorn'
7-
gem 'passenger'
7+
if RUBY_VERSION < '2.6.0'
8+
gem 'passenger', '< 6.0.23'
9+
else
10+
gem 'passenger'
11+
end
812
gem 'rack'
913
gem 'rackup' if RUBY_VERSION >= '2.4' # The `rackup` is its own gem since Rack 3.0
1014

0 commit comments

Comments
 (0)