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 949190e commit c41fa56
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/domain/domain.go
Expand Up @@ -2311,6 +2311,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 c41fa56

Please sign in to comment.