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
Copy file name to clipboardExpand all lines: runtime/protocol/aws-protocol-core/common/src/aws/smithy/kotlin/runtime/awsprotocol/ClockSkewInterceptor.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,8 @@ public class ClockSkewInterceptor : HttpInterceptor {
89
89
try {
90
90
Instant.fromRfc5322(it)
91
91
} catch (e:ParseException) {
92
-
logger.warn(e) { "Service returned malformed \"Date\" header value \"$it\", skipping skew calculation" }
92
+
logger.debug(e) { "Error while parsing \"Date\" header from service response" }
93
+
logger.warn { "Service returned malformed \"Date\" header value \"$it\", skipping skew calculation" }
0 commit comments