Skip to content

Commit 4a15dcd

Browse files
committed
Pass context to function
1 parent 056b883 commit 4a15dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/runner/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ func (m *Manager) createDefaultRunner(ctx context.Context) (*Runner, error) {
295295
// Make sure the signal handling is running
296296
// This runs an infinite loop for handling signals, so we explicitly
297297
// do not want to put it in a wait group of any kind
298-
go m.HandleSignals()
298+
go m.HandleSignals(m.ctx)
299299
} else {
300300
args = append(args, "--ipc-url", m.cfg.IPCUrl)
301301
}

0 commit comments

Comments
 (0)