fix: graceful shutdown with asynchronous processes - fixes #1022

This commit is contained in:
Julien Neuhart
2025-05-14 15:27:14 +02:00
parent 91757335ac
commit 66317197b6
5 changed files with 69 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
package gotenberg
import "errors"
// ErrCancelGracefulShutdownContext tells that a module wants to abort a
// graceful shutdown and stops Gotenberg right away as there are no more
// ongoing processes.
var ErrCancelGracefulShutdownContext = errors.New("cancel graceful shutdown's context")