Skip to content

Commit

Permalink
domain: avoid panic in the init stats breaking the loadStatsWorker (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkingrei authored Mar 7, 2024
1 parent a8503e8 commit d389099
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/domain/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -2264,6 +2264,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 d389099

Please sign in to comment.