Skip to content

Commit

Permalink
chore: fix due to lint check
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Rosiek <[email protected]>
  • Loading branch information
Dominik Rosiek committed Mar 6, 2024
1 parent c50e8b3 commit 0c3ecb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (e *exporter) ReturnAfter(after int) chan []*metricdata.Metric {
}

// Write received metrics to data channel
func (e *exporter) ExportMetrics(ctx context.Context, data []*metricdata.Metric) error {
func (e *exporter) ExportMetrics(_ context.Context, data []*metricdata.Metric) error {
for _, m := range data {
e.pipe <- m
}
Expand Down

0 comments on commit 0c3ecb8

Please sign in to comment.