Cleanup from PR 22608, remove esInstallDir (#23450)

This commit is contained in:
liza-mae 2018-09-24 13:57:23 -06:00 committed by GitHub
parent d8b4d4b060
commit e477ca3fdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ import { createEsTestCluster } from '../../es';
import { setupUsers, DEFAULT_SUPERUSER_PASS } from './auth';
export async function runElasticsearch({ config, options }) {
const { log, esFrom, esInstallDir } = options;
const { log, esFrom } = options;
const isOss = config.get('esTestCluster.license') === 'oss';
const cluster = createEsTestCluster({
@ -34,7 +34,6 @@ export async function runElasticsearch({ config, options }) {
log,
basePath: resolve(KIBANA_ROOT, '.es'),
esFrom: esFrom || config.get('esTestCluster.from'),
esInstallDir,
});
const esArgs = config.get('esTestCluster.serverArgs');