Skip to content

Commit 28f9517

Browse files
authored
Fix Struct::Tms deprecation warnings (#2413)
1 parent 9233ebe commit 28f9517

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Unreleased Changes
22
------------------
33

4+
* Issue - Fix Struct::Tms deprecation warnings
5+
46
2.11.595 (2020-09-28)
57
------------------
68

aws-sdk-core/lib/aws-sdk-core/eager_loader.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def initialize
1616
def load(klass_or_module)
1717
@loaded << klass_or_module
1818
klass_or_module.constants.each do |const_name|
19+
next if const_name == :Tms
1920
path = klass_or_module.autoload?(const_name)
2021
begin
2122
require(path) if path

0 commit comments

Comments
 (0)