aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/sandbox/container.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/sandbox/container.go b/internal/sandbox/container.go
index 5ee5a5b4..6676a2a9 100644
--- a/internal/sandbox/container.go
+++ b/internal/sandbox/container.go
@@ -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)