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 e6c08dd commit 1012b74Copy full SHA for 1012b74
pkg/driver/vz/vz_driver_darwin.go
@@ -451,5 +451,7 @@ func (l *LimaVzDriver) SetTargetMemory(memory int64) error {
451
return errors.New("unexpected type of balloon")
452
}
453
balloon.SetTargetVirtualMachineMemorySize(uint64(memory))
454
+ // avoid segfault, when trying to Release
455
+ runtime.SetFinalizer(balloon, nil)
456
return nil
457
0 commit comments