Skip to content

Commit

Permalink
fix: bucket client stream fn usage
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Feb 27, 2024
1 parent 9b4cfa0 commit 57cc2b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export async function packContainerWithTrain(container: Container, context: Cont
.catch(() => reject(new BuilderError('The analysis pack stream could not be forwarded to the container.')));
});

const readStream = stream.Readable.fromWeb(response.data as any);
const readStream = stream.Readable.fromWeb(response as any);

readStream.pipe(extract);
})
Expand Down

0 comments on commit 57cc2b0

Please sign in to comment.