From bf27aed2e48c28864e5a340e46d929b770a619b2 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Thu, 4 Jun 2020 20:06:29 -0400 Subject: [PATCH] Update zero-downtime-deployments.md Fix typo "exists" -> "exits" --- docs/gitbook/tutorials/zero-downtime-deployments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gitbook/tutorials/zero-downtime-deployments.md b/docs/gitbook/tutorials/zero-downtime-deployments.md index e72e4f95..6eaad280 100644 --- a/docs/gitbook/tutorials/zero-downtime-deployments.md +++ b/docs/gitbook/tutorials/zero-downtime-deployments.md @@ -87,7 +87,7 @@ Your app container should have a `preStop` hook that delays the container shutdo Even if your app reacts to `SIGTERM` and tries to complete the inflight requests before shutdown, that doesn't mean that the response will make it back to the caller. If the Envoy sidecar shuts down before your app, then the caller will receive a 503 error. -To mitigate this issue you can add a `preStop` hook to the Istio proxy and wait for the main app to exist before Envoy exists. +To mitigate this issue you can add a `preStop` hook to the Istio proxy and wait for the main app to exit before Envoy exits. ```bash #!/bin/bash