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

chore(deps): upgrade @financial-times/n-es-client to 1.8.0 #432

Merged
merged 1 commit into from
Mar 16, 2020
Merged
Show file tree
Hide file tree
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
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