Skip to content

Commit

Permalink
Specify handler name in handler config error msg (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzigold authored Mar 18, 2023
1 parent 6ecc4bc commit f3fac4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func SetTransportHandlers(name string, handlerBlocks []struct {

err = h.Config(configBlob)
if err != nil {
return err
return errors.Wrapf(err, "failed configuring handler plugin '%s'", block.Name)
}

handlers[name] = append(handlers[name], h)
Expand Down

0 comments on commit f3fac4f

Please sign in to comment.