https://vscode.dev/github/cilium/hive/blob/main/hive.go#L133-L135
now:
func NewWithOptions(opts Options, cells ...cell.Cell) *Hive {
h := &Hive{
lifecycle: &cell.DefaultLifecycle{
LogThreshold: opts.LogThreshold,
},
}
...
}
want:
func NewWithOptions(opts Options, cells ...cell.Cell) *Hive {
h := &Hive{
lifecycle: opt.lifecycle
}
if h.lifecycle==nil{
lifecycle=&cell.DefaultLifecycle{
LogThreshold: opts.LogThreshold,
},
}
...
}
https://vscode.dev/github/cilium/hive/blob/main/hive.go#L133-L135
now:
want: