Skip to content

Commit

Permalink
Fix Linting Error
Browse files Browse the repository at this point in the history
Signed-off-by: Mahad Zaryab <mahadzaryab1@gmail.com>
  • Loading branch information
mahadzaryab1 committed Oct 23, 2024
1 parent 6114782 commit aaa2cc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/query/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewServer(
return nil, err
}

httpServer, err := createHTTPServer(querySvc, metricsQuerySvc, options, tm, telset)
httpServer, err := createHTTPServer(ctx, querySvc, metricsQuerySvc, options, tm, telset)
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -194,6 +194,7 @@ type httpServer struct {
var _ io.Closer = (*httpServer)(nil)

func createHTTPServer(
_ context.Context,
querySvc *querysvc.QueryService,
metricsQuerySvc querysvc.MetricsQueryService,
queryOpts *QueryOptions,
Expand Down

0 comments on commit aaa2cc5

Please sign in to comment.