When updating from 0.1.1 to 0.2.1 we started getting this error:
TypeError: Response with null body status (101, 204, 205, or 304) cannot have a body
I believe it originates from the changes to containerFetch:
|
if (res.body !== undefined) { |
|
let { readable, writable } = new TransformStream(); |
|
res.body?.pipeTo(writable).finally(() => { |
|
this.decrementInflight(); |
|
}); |
|
|
|
return new Response(readable, res); |
|
} |
When updating from 0.1.1 to 0.2.1 we started getting this error:
I believe it originates from the changes to
containerFetch:containers/src/lib/container.ts
Lines 1080 to 1087 in 210e5fb