Skip to content

Commit

Permalink
fix(install): typo in elastic search preventing connection
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Sep 19, 2021
1 parent bb9ea9b commit 3678292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ installController.elastictest = function (req, res) {
var CONNECTION_URI = data.host + ':' + data.port

var child = require('child_process').fork(path.join(__dirname, '../../src/install/elasticsearchtest'), {
env: { FORK: 1, NODE_ENV: global.env, ELATICSEARCH_URI: CONNECTION_URI }
env: { FORK: 1, NODE_ENV: global.env, ELASTICSEARCH_URI: CONNECTION_URI }
})
global.forks.push({ name: 'elastictest', fork: child })

Expand Down

0 comments on commit 3678292

Please sign in to comment.