From ed5d1189caa30467b481ee5a75691e5677d2a41c Mon Sep 17 00:00:00 2001 From: kirankumar-grootan <107173945+kirankumar-grootan@users.noreply.github.com> Date: Fri, 12 Jul 2024 16:35:38 +0530 Subject: [PATCH] updated doc as per coderabbitai suggestions --- docs/middleware/healthcheck.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/middleware/healthcheck.md b/docs/middleware/healthcheck.md index f0169d43f4..2837c550be 100644 --- a/docs/middleware/healthcheck.md +++ b/docs/middleware/healthcheck.md @@ -4,7 +4,7 @@ id: healthcheck # Health Check -Liveness, readiness and startup probes middleware for [Fiber](https://github.com/gofiber/fiber) that provides three endpoints for checking the liveness, readiness and startup state of HTTP applications. +Liveness, readiness and startup probes middleware for [Fiber](https://github.com/gofiber/fiber) that provides three endpoints for checking the liveness, readiness, and startup state of HTTP applications. ## Overview @@ -16,7 +16,7 @@ Liveness, readiness and startup probes middleware for [Fiber](https://github.com - **Default Endpoint**: `/readyz` - **Behavior**: By default returns `true` immediately when the server is operational. -- **Startup Probe**: Assesses if the application is ready to handle requests. +- **Startup Probe**: Checks if the application has completed its startup sequence and is ready to proceed with initialization and readiness checks. - **Default Endpoint**: `/startupz` - **Behavior**: By default returns `true` immediately when the server is operational.