Bump high water mark when downloading bundle to 16 MB
This commit is contained in:
parent
8c3a732e36
commit
06361b4d2b
6 changed files with 35 additions and 5 deletions
|
|
@ -142,6 +142,13 @@ export async function extractTarZst(
|
|||
logger: Logger,
|
||||
): Promise<string> {
|
||||
const dest = await createExtractFolder();
|
||||
logger.debug(
|
||||
`Extracting to ${dest}.${
|
||||
tar instanceof stream.Readable
|
||||
? ` Input stream has high water mark ${tar.readableHighWaterMark}.`
|
||||
: ""
|
||||
}`,
|
||||
);
|
||||
|
||||
try {
|
||||
// Initialize args
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue