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.