You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,12 +130,12 @@ _Note: In local mode a local friendbot is running. In testnet and futurenet mode
130
130
131
131
### Readiness Endpoint
132
132
133
-
The quickstart image provides a `/ready` endpoint that indicates when all services are fully ready for use. This endpoint reports HTTP 200 when the image is ready and HTTP 503 when services are still starting up or experiencing issues.
133
+
The quickstart image provides a `/health` endpoint that indicates when all services are fully ready for use. This endpoint reports HTTP 200 when the image is ready and HTTP 503 when services are still starting up or experiencing issues.
134
134
135
135
Example usage:
136
136
137
137
```bash
138
-
$ curl http://localhost:8000/ready
138
+
$ curl http://localhost:8000/health
139
139
```
140
140
141
141
Example response when ready:
@@ -157,7 +157,7 @@ Example response when ready:
157
157
158
158
The endpoint automatically detects which services are running and only reports "ready" when all detected services are functioning properly. This eliminates the need to write custom scripts to test multiple service endpoints individually.
159
159
160
-
_Note: The `/ready` endpoint provides overall readiness status, while Horizon's existing`/health` endpoint provides Horizon-specific health information._
160
+
_Note: The `/health` endpoint provides comprehensive readiness status for all detected services, replacing Horizon's built-in`/health` endpoint with expanded functionality._
161
161
162
162
### Soroban Development
163
163
@@ -281,7 +281,7 @@ The image exposes one main port through which services provide their APIs:
0 commit comments