From d8f0b19f4908f6c854e75ed95810efaf49fa3818 Mon Sep 17 00:00:00 2001 From: Sohan Kshirsagar Date: Wed, 25 Mar 2026 16:39:21 -0700 Subject: [PATCH] fix: remove HTML from acceptable content types for trace recording --- src/instrumentation/libraries/http/utils/httpBodyEncoder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instrumentation/libraries/http/utils/httpBodyEncoder.ts b/src/instrumentation/libraries/http/utils/httpBodyEncoder.ts index eacb27f7..d1947558 100644 --- a/src/instrumentation/libraries/http/utils/httpBodyEncoder.ts +++ b/src/instrumentation/libraries/http/utils/httpBodyEncoder.ts @@ -155,4 +155,4 @@ export function getDecodedType( return undefined; } -export const ACCEPTABLE_CONTENT_TYPES = new Set([DecodedType.JSON, DecodedType.PLAIN_TEXT, DecodedType.HTML]); +export const ACCEPTABLE_CONTENT_TYPES = new Set([DecodedType.JSON, DecodedType.PLAIN_TEXT]);