Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Dec 18, 2020
1 parent 4a1139a commit 0024675
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/kbn-es/src/cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ exports.Cluster = class Cluster {
// so we need to set it to a smaller size for local dev and CI
// especially because we currently run many instances of ES on the same machine during CI
options.esEnvVars.ES_JAVA_OPTS =
(options.esEnvVars.ES_JAVA_OPTS ? `${options.esEnvVars} ` : '') + '-Xms1g -Xmx1g';
(options.esEnvVars.ES_JAVA_OPTS ? `${options.esEnvVars.ES_JAVA_OPTS} ` : '') +
'-Xms1g -Xmx1g';

this._process = execa(ES_BIN, args, {
cwd: installPath,
Expand Down

0 comments on commit 0024675

Please sign in to comment.