1
0
forked from wrenn/wrenn

fix: assorted bug fixes for CH migration

Fix resource leaks, race conditions, and error handling across host
agent and control plane: proper sparse file cleanup on close error,
connect error wrapping for MakeDir, CoW file cleanup on pause failure,
per-sandbox VM directories, deferred map deletion to avoid race in VM
destroy, and goroutine launch for extension background workers.
This commit is contained in:
2026-05-17 01:47:56 +06:00
parent fb16bc9ed1
commit a5425969ed
6 changed files with 17 additions and 5 deletions

View File

@ -255,7 +255,7 @@ func Run(opts ...Option) {
// Start extension background workers.
for _, ext := range o.extensions {
for _, worker := range ext.BackgroundWorkers(sctx) {
worker(ctx)
go worker(ctx)
}
}