From 7d4c703be55589c817ac13736fbd274b5ef21c7e Mon Sep 17 00:00:00 2001 From: Curtis Vogt Date: Fri, 8 Mar 2024 14:24:54 -0600 Subject: [PATCH] Cross reference graceful termination --- docs/src/health_checks.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/health_checks.md b/docs/src/health_checks.md index d28a207..a2228cd 100644 --- a/docs/src/health_checks.md +++ b/docs/src/health_checks.md @@ -110,3 +110,5 @@ Once `shutdown!` is called the following occurs: 3. The Julia process is terminated By default the `shutdown_handler` only has 5 seconds to complete. If your `shutdown_handler` requires more time to execute you can change the timeout by using the keyword `shutdown_handler_timeout`. + +Depending on your application you may want to define multiple calls to `shutdown!`. For example you may want to call `shutdown!` from within `graceful_terminator` to enable [graceful termination support](./graceful_termination.md) for you application.