From fe7d208cf76fa6f24bb9d12ba29b5ed61d837ce3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 13 Feb 2025 23:15:34 +0900 Subject: helper: use generic extra files interface This replaces the pipes object and integrates context into helper process lifecycle. Signed-off-by: Ophestra --- internal/app/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/app') diff --git a/internal/app/start.go b/internal/app/start.go index aba331e7..837ab227 100644 --- a/internal/app/start.go +++ b/internal/app/start.go @@ -46,7 +46,7 @@ func (a *app) Run(ctx context.Context, rs *RunState) error { } // startup will go ahead, commit system setup - if err := a.seal.sys.Commit(); err != nil { + if err := a.seal.sys.Commit(ctx); err != nil { return err } a.seal.sys.needRevert = true -- cgit v1.3.1