mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
2507dc13e9
Signed-off-by: Vishal Rana <vr@labstack.com>
31 lines
544 B
Markdown
31 lines
544 B
Markdown
---
|
|
title: Graceful Shutdown
|
|
menu:
|
|
side:
|
|
parent: recipes
|
|
weight: 13
|
|
---
|
|
|
|
## Graceful Shutdown Recipe
|
|
|
|
### Using [grace](https://github.com/facebookgo/grace)
|
|
|
|
`server.go`
|
|
|
|
{{< embed "graceful-shutdown/grace/server.go" >}}
|
|
|
|
### Using [graceful](https://github.com/tylerb/graceful)
|
|
|
|
`server.go`
|
|
|
|
{{< embed "graceful-shutdown/graceful/server.go" >}}
|
|
|
|
### Maintainers
|
|
|
|
- [mertenvg](https://github.com/mertenvg)
|
|
|
|
### Source Code
|
|
|
|
- [graceful]({{< source "graceful-shutdown/graceful" >}})
|
|
- [grace]({{< source "graceful-shutdown/grace" >}})
|