Commit 45c946df294bceec8acc94e5323df2b018b4391a
Committed by
Andrew Kane
1 parent
103ae576
Exists in
master
and in
17 other branches
Update Readme.md Heroku / foundelasticsearch (#1263)
For Heroku with plugin foundelasticsearch and last version. I did the update today and got Faraday SSL Error for each request after the deploy, I don't know what changed in any dependency or even in searchkick but adding the port resolve the issue. It was working fine with earlier versions of`elasticsearch-ruby` and deps. Maybe there is the same issue with bonsai addon, i don't know. Maybe someone should verify.
Showing
1 changed file
with
6 additions
and
3 deletions
Show diff stats
README.md
... | ... | @@ -1038,16 +1038,19 @@ heroku addons:create foundelasticsearch |
1038 | 1038 | heroku addons:open foundelasticsearch |
1039 | 1039 | ``` |
1040 | 1040 | |
1041 | -Visit the Shield page and reset your password. You’ll need to add the username and password to your url. Get the existing url with: | |
1041 | +Visit the Shield page and reset your password. You’ll need to add the username and password to your url. | |
1042 | +Also, verify your port number in your dashboard, It sould be `9243` | |
1043 | + | |
1044 | +Get the existing url with: | |
1042 | 1045 | |
1043 | 1046 | ```sh |
1044 | 1047 | heroku config:get FOUNDELASTICSEARCH_URL |
1045 | 1048 | ``` |
1046 | 1049 | |
1047 | -And add `elastic:password@` right after `https://`: | |
1050 | +And add `elastic:password@` right after `https://`, add the port at the end: | |
1048 | 1051 | |
1049 | 1052 | ```sh |
1050 | -heroku config:set ELASTICSEARCH_URL=https://elastic:password@12345.us-east-1.aws.found.io | |
1053 | +heroku config:set ELASTICSEARCH_URL=https://elastic:password@12345.us-east-1.aws.found.io:9243 | |
1051 | 1054 | ``` |
1052 | 1055 | |
1053 | 1056 | Then deploy and reindex: | ... | ... |