sandbox: return error on doubled start

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-03-15 03:30:14 +09:00
parent e64e7608ca
commit 4230281194

View File

@@ -3,6 +3,7 @@ package sandbox
import (
"context"
"encoding/gob"
"errors"
"fmt"
"io"
"os"
@@ -111,7 +112,7 @@ type (
func (p *Container) Start() error {
if p.cmd != nil {
panic("attempted to start twice")
return errors.New("sandbox: already started")
}
c, cancel := context.WithCancel(p.ctx)