Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #432 from Financial-Times/upgrade-n-es-client
Browse files Browse the repository at this point in the history
chore(deps): upgrade @financial-times/n-es-client to 1.8.0
  • Loading branch information
sjparkinson authored Mar 16, 2020
2 parents daa4997 + 1cc0ccc commit 2fb3546
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"author": "bren.brightwell@ft.com",
"dependencies": {
"@financial-times/fastly-tools": "^1.7.1",
"@financial-times/n-es-client": "^1.6.2",
"@financial-times/n-es-client": "^1.8.0",
"@financial-times/n-handlebars": "^1.22.1",
"@georgecrawford/postcss-remove-important": "^1.4.0",
"@quarterto/assert-env": "^1.4.0",
Expand Down
6 changes: 3 additions & 3 deletions server/health/elastic-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ module.exports = healthCheck({
name: 'Check TCP/IP connectivity to this app\'s configured Elastic Search hostname on port 443',
businessImpact: 'Newly crawled FT articles will not have AMP versions '
+ 'of content available in e.g. the Google news carousel',
technicalSummary: 'Attempts to connect to next-elastic.glb.ft.com:443. All '
technicalSummary: 'Attempts to connect to next-elasticsearch.nlb.ft.com:443. All '
+ 'content is requested from this host; without connectivity, when ft.com '
+ 'is crawled, new content will not be available as AMP pages.',
panicGuide: 'Check connectivity by running '
+ `\`heroku run --app ${process.env.HEROKU_APP_NAME} nc -w 5 -z next-elastic.glb.ft.com 443\`.`,
}, () => tcpFetch('next-elastic.glb.ft.com', 443)
+ `\`heroku run --app ${process.env.HEROKU_APP_NAME} nc -w 5 -z next-elasticsearch.nlb.ft.com 443\`.`,
}, () => tcpFetch('next-elasticsearch.nlb.ft.com', 443)
.then(
ms => ({ok: true, checkOutput: ms}),
err => ({ok: false, checkOutput: err})
Expand Down

0 comments on commit 2fb3546

Please sign in to comment.