From f6be1c61da1de03690798ae783afbe20ea70e99e Mon Sep 17 00:00:00 2001 From: Joey Greco <57115019+joeyagreco@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:12:41 -0600 Subject: [PATCH] Do not return error on SIGTERM --- contrib/process/runnable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/process/runnable.go b/contrib/process/runnable.go index 1ad322d..2250a08 100644 --- a/contrib/process/runnable.go +++ b/contrib/process/runnable.go @@ -33,5 +33,5 @@ func (p *process) Run(ctx context.Context) error { defer cancel() <-ctx.Done() - return ctx.Err() + return nil }