From f9ea645de3630cd3b3574164a4bea6d61d023fcf Mon Sep 17 00:00:00 2001 From: Shubhang Balkundi Date: Mon, 25 Mar 2024 12:25:51 +0530 Subject: [PATCH] removes unused params --- mw/statsd/statsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mw/statsd/statsd.go b/mw/statsd/statsd.go index db857e0..668ef4e 100644 --- a/mw/statsd/statsd.go +++ b/mw/statsd/statsd.go @@ -47,7 +47,7 @@ func NewPublisher(opts ...func(c *Client)) *Client { // Run methods runs the publisher and starts up the go-routine publisher in the background // the go-routine publisher publishes the go-routine count every 10 seconds -func (s *Client) Run(ctx context.Context, opts ...func(r *runOpts)) error { +func (s *Client) Run(opts ...func(r *runOpts)) error { config := &statsd.ClientConfig{ Prefix: s.prefix, Address: s.host,