diff --git a/runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptor.kt b/runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptor.kt index ac92dc23c..df0bdb2ea 100644 --- a/runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptor.kt +++ b/runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptor.kt @@ -55,7 +55,7 @@ public class ClockSkewInterceptor : HttpInterceptor { "PriorRequestNotComplete", "RequestTimeout", "RequestTimeoutException", - "InternalError" + "InternalError", ) } diff --git a/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptorTest.kt b/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptorTest.kt index 9d8b7089c..525e08e60 100644 --- a/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptorTest.kt +++ b/runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/interceptors/ClockSkewInterceptorTest.kt @@ -86,7 +86,7 @@ class ClockSkewInterceptorTest { Headers { append("Date", serverTimeString) }, - HttpStatusCode(403, POSSIBLE_SKEWED_RESPONSE_CODE_DESCRIPTION) + HttpStatusCode(403, POSSIBLE_SKEWED_RESPONSE_CODE_DESCRIPTION), ) val req = HttpRequestBuilder().apply { @@ -115,7 +115,7 @@ class ClockSkewInterceptorTest { Headers { append("Date", serverTimeString) }, - HttpStatusCode(403, POSSIBLE_SKEWED_RESPONSE_CODE_DESCRIPTION) + HttpStatusCode(403, POSSIBLE_SKEWED_RESPONSE_CODE_DESCRIPTION), ) val req = HttpRequestBuilder().apply {