Skip to content

Commit

Permalink
Use < 9.3 for jruby version check
Browse files Browse the repository at this point in the history
  • Loading branch information
alextwoods committed Aug 14, 2024
1 parent 5670174 commit bd4ec3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gems/aws-sdk-core/lib/aws-sdk-sso.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
end

if Aws.autoload?(:SSO) &&
!(defined?(JRUBY_VERSION) && JRUBY_VERSION.start_with?('9.2'))
!(defined?(JRUBY_VERSION) && JRUBY_VERSION < '9.3')
Aws.autoload(:SSO, __FILE__)
end

Expand Down
2 changes: 1 addition & 1 deletion gems/aws-sdk-core/lib/aws-sdk-ssooidc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
end

if Aws.autoload?(:SSOOIDC) &&
!(defined?(JRUBY_VERSION) && JRUBY_VERSION.start_with?('9.2'))
!(defined?(JRUBY_VERSION) && JRUBY_VERSION < '9.3')
Aws.autoload(:SSOOIDC, __FILE__)
end

Expand Down
2 changes: 1 addition & 1 deletion gems/aws-sdk-core/lib/aws-sdk-sts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
end

if Aws.autoload?(:STS) &&
!(defined?(JRUBY_VERSION) && JRUBY_VERSION.start_with?('9.2'))
!(defined?(JRUBY_VERSION) && JRUBY_VERSION < '9.3')
Aws.autoload(:STS, __FILE__)
end

Expand Down

0 comments on commit bd4ec3b

Please sign in to comment.