diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-02-13 23:15:34 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-02-13 23:34:15 +0900 |
| commit | fe7d208cf76fa6f24bb9d12ba29b5ed61d837ce3 (patch) | |
| tree | cac02af50a13b2078739a8f5a74d219f3b60833d /internal/app | |
| parent | 60c287375048b21eab2bd82f1e7d43e36dcfb3a2 (diff) | |
helper: use generic extra files interface
This replaces the pipes object and integrates context into helper process lifecycle.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app')
| -rw-r--r-- | internal/app/start.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
