Skip to content

Commit

Permalink
Adding a troubleshooting section
Browse files Browse the repository at this point in the history
  • Loading branch information
mtakaki committed Oct 30, 2019
1 parent b3e4000 commit 9a73063
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,14 @@ If you're going to use a file with a name other than `config.yml`, you will need
```
$ docker run --rm -it -v "$PWD"/my_config.yml:/usr/src/app/config/config.yml:ro mtakaki/cachet-url-monitor
```

## Troubleshooting

### SSLERROR
If it's throwing the following exception:
```
raise SSLError(e, request=request)
requests.exceptions.SSLError: HTTPSConnectionPool(host='redacted', port=443): Max retries exceeded with url: /api/v1/components/19 (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:579)'),))
```

It can be resolved by seting the CA bundle environment variable `REQUESTS_CA_BUNDLE` pointing at your certificate file. It can either be set in your python environment, before running this tool, or in your docker container.

0 comments on commit 9a73063

Please sign in to comment.