Skip to content

Commit

Permalink
Add rungroup actor name to error when recovering after panic (#2084)
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany authored Feb 3, 2025
1 parent a8cdb7c commit 7fa0f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rungroup/rungroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (g *Group) Run() error {
// add it now.
actorErrors <- actorError{
errorSourceName: a.name,
err: fmt.Errorf("execute panicked: %+v", r),
err: fmt.Errorf("executing rungroup actor %s panicked: %+v", a.name, r),
}
})
}
Expand Down

0 comments on commit 7fa0f94

Please sign in to comment.