You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add handling for miliseconds in RFC3339 date parsing across identity reoslvers.
* Add swift file extension.
* Remove stale reference
* Add newline at end of file.
* Fix swift 6 compilation errors & add unit tests.
* Add preconcurrency import for ISO8601DateFormatter
---------
Co-authored-by: Sichan Yoo <chanyoo@amazon.com>
Copy file name to clipboardExpand all lines: Sources/Core/AWSSDKIdentity/Sources/AWSSDKIdentity/AWSCredentialIdentityResolvers/ECSAWSCredentialIdentityResolver.swift
Copy file name to clipboardExpand all lines: Sources/Core/AWSSDKIdentity/Sources/AWSSDKIdentity/AWSCredentialIdentityResolvers/IMDSAWSCredentialIdentityResolver.swift
Copy file name to clipboardExpand all lines: Sources/Core/AWSSDKIdentity/Sources/AWSSDKIdentity/AWSCredentialIdentityResolvers/LoginAWSCredentialIdentityResolver.swift
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -143,17 +143,11 @@ public struct LoginAWSCredentialIdentityResolver: AWSCredentialIdentityResolver
143
143
decoder.dateDecodingStrategy =.custom { decoder in
144
144
letcontainer=try decoder.singleValueContainer()
145
145
letdateString=try container.decode(String.self)
146
-
letformatter=ISO8601DateFormatter()
147
-
// Powershell saves expiration date with milliseconds.
Copy file name to clipboardExpand all lines: Sources/Core/AWSSDKIdentity/Sources/AWSSDKIdentity/AWSCredentialIdentityResolvers/ProcessAWSCredentialIdentityResolver.swift
Copy file name to clipboardExpand all lines: Sources/Core/AWSSDKIdentity/Sources/AWSSDKIdentity/BearerTokenIdentityResolvers/SSOBearerTokenIdentityResolver.swift
0 commit comments