Skip to content

Commit

Permalink
domain: avoid panic in the init stats breaking the loadStatsWorker (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkingrei authored and ti-chi-bot committed Mar 14, 2024
1 parent 2b8a5fa commit 74d9bef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions domain/domain.go
Expand Up @@ -1930,6 +1930,10 @@ func (do *Domain) newOwnerManager(prompt, ownerKey string) owner.Manager {
func (do *Domain) initStats() {
statsHandle := do.StatsHandle()
defer func() {
if r := recover(); r != nil {
logutil.BgLogger().Error("panic when initiating stats", zap.Any("r", r),
zap.Stack("stack"))
}
close(statsHandle.InitStatsDone)
}()
t := time.Now()
Expand Down

0 comments on commit 74d9bef

Please sign in to comment.