Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Fix: Bump maxBuffer for Docker solc compilations #3139

Merged
merged 1 commit into from
Jul 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const VersionRange = require("./VersionRange");

// Set a sensible limit for maxBuffer
// See https://github.com/nodejs/node/pull/23027
const maxBuffer = 1024 * 1024 * 10;
const maxBuffer = 1024 * 1024 * 100;

class Docker extends LoadingStrategy {
async load() {
Expand Down