We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa40fd8 commit 08dcd09Copy full SHA for 08dcd09
packages/large-response-middleware/src/index.ts
@@ -68,11 +68,9 @@ export const withLargeResponseHandler = ({
68
const clientCanHandleLargeResponseBadRequest = Object.entries(requestHeaders).find(
69
([header, v]) => header.toLowerCase() === HANDLE_LARGE_RESPONSE_HEADER && yn(v),
70
);
71
- console.log('clientCanHandleLargeResponseBadRequest', clientCanHandleLargeResponseBadRequest);
72
let $payload_ref = null;
73
74
if (contentLengthMB > thresholdWarnInMB && !clientCanHandleLargeResponseBadRequest) {
75
- console.log('uploading to s3');
76
const { url } = await safeUploadLargeResponse({
77
groupId: String(groupId),
78
contentType: 'application/json',
0 commit comments