Skip to content

Commit

Permalink
Add log when the rungroup has completed shutdown (#1486)
Browse files Browse the repository at this point in the history
  • Loading branch information
directionless authored Nov 30, 2023
1 parent 1070ad9 commit 44406f1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/rungroup/rungroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ func (g *Group) Run() error {
// Wait for the first actor to stop.
initialActorErr := <-errors
level.Debug(g.logger).Log("msg", "received interrupt error from first actor -- shutting down other actors", "err", initialActorErr)
defer level.Debug(g.logger).Log("msg", "done shutting down actors", "actor_count", len(g.actors), "initial_err", initialActorErr)

// Signal all actors to stop.
for _, a := range g.actors {
Expand Down

0 comments on commit 44406f1

Please sign in to comment.