builder: delete sandbox in a goroutine for performance
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
parent
1ad272c7e4
commit
bcf1967dd0
1 changed files with 7 additions and 6 deletions
|
@ -15,6 +15,7 @@ import (
|
|||
"github.com/moby/buildkit/solver/pb"
|
||||
"github.com/moby/buildkit/util/network"
|
||||
specs "github.com/opencontainers/runtime-spec/specs-go"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
const networkName = "bridge"
|
||||
|
@ -100,10 +101,10 @@ func (iface *lnInterface) Set(s *specs.Spec) {
|
|||
|
||||
func (iface *lnInterface) Close() error {
|
||||
<-iface.ready
|
||||
err := iface.sbx.Delete()
|
||||
if iface.err != nil {
|
||||
// iface.err takes precedence over cleanup errors
|
||||
return iface.err
|
||||
}
|
||||
return err
|
||||
go func() {
|
||||
if err := iface.sbx.Delete(); err != nil {
|
||||
logrus.Errorf("failed to delete builder network sandbox: %v", err)
|
||||
}
|
||||
}()
|
||||
return iface.err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue