Skip to content

Commit

Permalink
Increase maxBuffer to 256m in case the list of files in Gradle caches…
Browse files Browse the repository at this point in the history
… grows to that size
  • Loading branch information
holatuwol committed Aug 15, 2019
1 parent c1905a8 commit 1965319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ABOUT.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Change Log

This is a change log for when I started keeping track of the changes that were made.

* **2019-08-15**: Increase maxBuffer to 4g in case the list of files in Gradle caches grows to that size
* **2019-08-15**: Increase maxBuffer to 256m in case the list of files in Gradle caches grows to that size
* **2019-08-15**: Follow symlinks, log errors if find fails, log debug information if find succeeds
* **2019-08-15**: Always use find to build file listing cache to avoid overhead of git status
* **2019-08-05**: For legacy plugins SDK, fix scanning for required deployment contexts
Expand Down
2 changes: 1 addition & 1 deletion streams9/streams8.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function generateFileListCache(cachePath) {

var options = {
'cwd': cachePath,
'maxBuffer': 1024 * 1024 * 1024 * 4
'maxBuffer': 1024 * 1024 * 256
};

var fileList = [];
Expand Down

0 comments on commit 1965319

Please sign in to comment.