chore: make servicegroup panic as demand (#3422)

This commit is contained in:
Kevin Wan
2023-07-13 22:08:35 +08:00
committed by GitHub
parent 6719d06146
commit a7daff3587
2 changed files with 25 additions and 25 deletions

View File

@@ -68,7 +68,7 @@ func (sg *ServiceGroup) doStart() {
for i := range sg.services {
service := sg.services[i]
routineGroup.RunSafe(func() {
routineGroup.Run(func() {
service.Start()
})
}