Skip to content

Commit

Permalink
Fixes #3019 bumps buffer size to 100MB
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Dec 8, 2023
1 parent 712e58c commit 4491077
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

### Fixed

- Fixes [#3019](https://github.com/gitkraken/vscode-gitlens/issues/3019) - Commits Views not working
- Fixes [#3026](https://github.com/gitkraken/vscode-gitlens/issues/3026) - Gitlens stopped working in sub-repositories
- Fixes [#2746](https://github.com/gitkraken/vscode-gitlens/issues/2746) - Remove 'undo commit' command from gitlens inspect
- Fixes [#2482](https://github.com/gitkraken/vscode-gitlens/issues/2482) - Unresponsive "commits" view and "branches" view update due to git log
Expand Down
2 changes: 1 addition & 1 deletion src/env/node/git/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export function run<T extends number | string | Buffer>(
encoding: BufferEncoding | 'buffer' | string,
options?: RunOptions & { exitCodeOnly?: boolean },
): Promise<T> {
const { stdin, stdinEncoding, ...opts }: RunOptions = { maxBuffer: 100 * 1024 * 1024, ...options };
const { stdin, stdinEncoding, ...opts }: RunOptions = { maxBuffer: 1000 * 1024 * 1024, ...options };

let killed = false;
return new Promise<T>((resolve, reject) => {
Expand Down

0 comments on commit 4491077

Please sign in to comment.