Skip to content

Commit 378e30e

Browse files
authored
misc: downgrade "response headers didn't contain a valid checksum" to INFO (#1279)
1 parent eea5086 commit 378e30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/FlexibleChecksumsResponseInterceptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public open class FlexibleChecksumsResponseInterceptor(
6262

6363
val checksumHeader = CHECKSUM_HEADER_VALIDATION_PRIORITY_LIST
6464
.firstOrNull { context.protocolResponse.headers.contains(it) } ?: run {
65-
logger.warn { "Checksum validation was requested but the response headers didn't contain a valid checksum." }
65+
logger.info { "Checksum validation was requested but the response headers didn't contain a valid checksum." }
6666
return context.protocolResponse
6767
}
6868

0 commit comments

Comments
 (0)