We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a38b60 commit ea6fd88Copy full SHA for ea6fd88
components/docker-up/runc-facade/main.go
@@ -90,7 +90,12 @@ func createAndRunc(runcPath string, log *logrus.Logger) error {
90
// See here for more details on why retries are necessary.
91
// https://github.com/gitpod-io/gitpod/issues/12365
92
for i := 0; i <= RETRY; i++ {
93
- err = exec.Command(runcPath, os.Args[1:]...).Run()
+
94
+ cmd := exec.Command(runcPath, os.Args[1:]...)
95
+ cmd.Stdin = os.Stdin
96
+ cmd.Stderr = os.Stderr
97
+ cmd.Stdout = os.Stdout
98
+ err = cmd.Run()
99
100
if err != nil {
101
log.WithError(err).Warn("runc failed")
0 commit comments