Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
nit
Signed-off-by: Joshua Kim <20001595+joshua-kim@users.noreply.github.com>
  • Loading branch information
joshua-kim committed Oct 3, 2025
commit 346610bf4af0d851e3743bb54204d344b03d8154
3 changes: 1 addition & 2 deletions tests/fixture/tmpnet/process_runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,12 @@ func (p *ProcessRuntime) Start(ctx context.Context) error {
return stacktrace.Errorf("writing node flags: %w", err)
}

// All arguments are provided in the flags file.
//
// Ensure process is detached from the parent process so that an error in the
// parent will not affect the child.
cmd := exec.CommandContext(
context.WithoutCancel(ctx),
runtimeConfig.AvalancheGoPath,
// All arguments are provided in the flags file
"--config-file",
p.node.GetFlagsPath(),
) // #nosec G204
Expand Down
Loading