Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Minor Fixes #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ SSSPy is following convention by properly implemented a `/ping` endpoint for [co

### Health Checks ###

Nobody wants your service to recieve traffic when it's not actually functional.
Nobody wants your service to receive traffic when it's not actually functional.
Your consumers do not want that, because they want their service calls to work.
And you don't want that, because you also want your service to work.

You can make sure that a broken service instance won't recieve traffic by making your `/health` checks fail when your service is broken.
You can make sure that a broken service instance won't receive traffic by making your `/health` checks fail when your service is broken.
Simply return a non-`200` status code.
Here is an example from [optica](https://github.com/airbnb/optica), a simple Sinatra service:

Expand Down