I am getting a context cancelled error from the dagger engine.
I have the engine running inside a docker sidecar container that is accessed over TCP from my main application container using the Go SDK in the same kubernetes pod.
time="2023-05-15T16:05:05Z" level=error msg="/moby.buildkit.v1.frontend.LLBBridge/StatFile returned error: rpc error: code = Unknown desc = error from sender: context canceled"
error from sender: context canceled
1 v0.0.0+unknown /usr/local/bin/dagger-engine --config /etc/dagger/engine.toml --debug
github.com/tonistiigi/fsutil.(*receiver).run.func2
/go/pkg/mod/github.com/tonistiigi/fsutil@v0.0.0-20230105215944-fb433841cbfa/receive.go:179
golang.org/x/sync/errgroup.(*Group).Go.func1
/go/pkg/mod/golang.org/x/sync@v0.2.0/errgroup/errgroup.go:75
runtime.goexit
/usr/local/go/src/runtime/asm_amd64.s:1598
Here is the log output as well.
2023-05-15 12:05:05 #3 sha256:3f026796e5ad2d5022169e508286b0380f6a15ce0340dd744ddae178df49982c 40.43MB / 49.55MB 1.5s
#3 extracting sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 1.1s done
#3 ...
#5 host.directory /
#5 transferring /: 14.75MB 1.7s done
#5 CANCELED
#2
#2 CANCELED
2023-05-15 12:05:05
2023-05-15 12:05:05 #1 resolve image config for docker.io/library/node:alpine
#1 DONE 0.5s
I have confirmed my MTU is correct, and I tried with DOCKER_BUILDKIT=1, but nothing I do resolves it. Has anyone seen this error before?