1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix curl health call (#888)

removed duplicate curl in the health endpoint example call.
curl curl --> curl
This commit is contained in:
Blaine R Southam 2021-07-15 00:49:27 -06:00 committed by GitHub
parent 72993002a2
commit 85d8e0c10d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ Expected output would be something like:
The proxy will try to synchronize with the Unleash API at startup, until it has successfully done that the proxy will return `HTTP 503 - Not Read?` for all request. You can use the health endpoint to validate that the proxy is ready to recieve requests:
```bash
curl curl http://localhost:3000/proxy/health -I
curl http://localhost:3000/proxy/health -I
```
```bash