Skip to content

Commit 24b0df2

Browse files
committed
fix(tests): Increase git buffer size so cfn/sam schemas can be downloaded
Currently the integration tests in #3042 are failing because the SAM schema fails to download with ```stdout maxBuffer length exceeded``` Increase buffer size
1 parent 58a3bba commit 24b0df2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/extensions/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export class GitExtension {
369369

370370
return execFileAsync(api.git.path, ['cat-file', type, hash], {
371371
cwd: tmpDir,
372-
maxBuffer: 1024 * 1024 * 5,
372+
maxBuffer: 1024 * 1024 * 6,
373373
}).then(({ stdout }) => stdout)
374374
},
375375
}))

0 commit comments

Comments
 (0)