File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
23
23
spec . require_paths = [ 'lib' ]
24
24
25
- spec . add_dependency 'aws-sdk-core' , '~> 3.209.1 '
25
+ spec . add_dependency 'aws-sdk-core' , '~> 3.211.0 '
26
26
spec . add_dependency 'google-apis-core' , '~> 0.15.1'
27
27
spec . add_dependency 'launchy' , '~> 3.0.1'
28
28
Original file line number Diff line number Diff line change 97
97
end
98
98
99
99
it 'refreshes expired credentials' do
100
- skip 'This test appears to have been failing for a long time. See comment in test.'
101
100
config [ :client ] . stub_responses (
102
101
:assume_role_with_web_identity ,
103
102
[
109
108
expiration = provider . expiration
110
109
_ ( expiration ) . must_equal ( provider . expiration )
111
110
Timecop . travel ( 1.5 . hours . from_now ) do
112
- # This test is failing. I don't see where we'd be triggering a refresh, and some debugging sugguests the refresh logic is never called.
111
+ provider . refresh!
113
112
_ ( expiration ) . wont_equal ( provider . expiration )
114
113
end
115
114
end
You can’t perform that action at this time.
0 commit comments