Skip to content

Commit 21ece56

Browse files
committed
fix build
1 parent cd168f3 commit 21ece56

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

packages/http/fetch/src/middlewares/compressionHandler.ts

+10-12
Original file line numberDiff line numberDiff line change
@@ -88,20 +88,18 @@ export class CompressionHandler implements Middleware {
8888
span?.setAttribute("http.request.body.size", compressedBody.size);
8989

9090
// execute the next middleware and check if the response code is 415
91-
try {
92-
const response = await this.next?.execute(url, requestInit, requestOptions);
93-
if (response?.status === 415) {
94-
// remove the Content-Encoding header
95-
requestInit.headers.delete(CompressionHandler.CONTENT_ENCODING_HEADER);
96-
requestInit.body = unCompressedBody.buffer;
97-
span?.setAttribute("http.request.body.compressed", false);
98-
span?.setAttribute("http.request.body.size", unCompressedBodySize);
99-
100-
return this.next?.execute(url, requestInit, requestOptions) ?? Promise.reject(new Error("Response is undefined"));
101-
}
102-
} catch (error) {
91+
92+
const response = await this.next?.execute(url, requestInit, requestOptions);
93+
if (response?.status === 415) {
94+
// remove the Content-Encoding header
95+
requestInit.headers.delete(CompressionHandler.CONTENT_ENCODING_HEADER);
96+
requestInit.body = unCompressedBody.buffer;
97+
span?.setAttribute("http.request.body.compressed", false);
98+
span?.setAttribute("http.request.body.size", unCompressedBodySize);
99+
103100
return this.next?.execute(url, requestInit, requestOptions) ?? Promise.reject(new Error("Response is undefined"));
104101
}
102+
return response != null ? Promise.resolve(response) : Promise.reject(new Error("Response is undefined"));
105103
}
106104

107105
private contentRangeBytesIsPresent(header: HeadersInit | undefined): boolean {

packages/http/fetch/test/common/middleware/compressionHandler.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ describe("CompressionHandler", () => {
5252
const options = new CompressionHandlerOptions({ enableCompression: true });
5353
compressionHandler = new CompressionHandler(options);
5454

55+
compressionHandler.next = nextMiddleware;
56+
nextMiddleware.setResponses([new Response("ok", { status: 200 })]);
57+
5558
const requestInit = { headers: new Headers(), body: "test" };
5659
await compressionHandler.execute("http://example.com", requestInit);
5760

@@ -65,8 +68,6 @@ describe("CompressionHandler", () => {
6568
compressionHandler.next = nextMiddleware;
6669
nextMiddleware.setResponses([new Response("nope", { status: 415 }), new Response("ok", { status: 200 })]);
6770

68-
//(nextMiddleware.execute as any).mockResolvedValueOnce(new Response(null, { status: 415 }));
69-
7071
const requestInit = { headers: new Headers(), body: "test" };
7172
const response = await compressionHandler.execute("http://example.com", requestInit);
7273

0 commit comments

Comments
 (0)