Skip to content

Commit

Permalink
Merge pull request #71 from mactep/fix/event-matcher-error
Browse files Browse the repository at this point in the history
Fix error message on event matcher helper
  • Loading branch information
TheRafaBonin authored Jan 17, 2024
2 parents 3ff1936 + bdffb18 commit 0bb8c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/events/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func MatchTopicAndFormatsMessage[T any](
var err error

match, err = regexp.MatchString(referenceTopic, topic)
err = roxy.Wrap(err, "Failed to match payment status topic string")
err = roxy.Wrap(err, "Failed to match topic")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 0bb8c06

Please sign in to comment.