Skip to content

Commit 3cd8fc5

Browse files
Fix a complaint from GoSec
1 parent 40d68fa commit 3cd8fc5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pkg/internal/interception/interception.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ func (c *channel) Name() string {
5656
return c.delegate.Name()
5757
}
5858

59-
func (c *channel) Send(ctx context.Context, m net.TaggedMarshaler) error {
59+
func (c *channel) Send(
60+
ctx context.Context,
61+
m net.TaggedMarshaler,
62+
strategy ...net.RetransmissionStrategy,
63+
) error {
6064
altered := c.rules(m)
6165
if altered == nil {
6266
// drop the message

0 commit comments

Comments
 (0)