Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
StLeoX committed Oct 12, 2024
1 parent 5ea6807 commit e2f8157
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion banyand/liaison/grpc/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,9 @@ func newMeasureAggregateFunctionServer() *measureAggregateFunctionServer {
return &measureAggregateFunctionServer{supports: functions}
}

func (ms *measureAggregateFunctionServer) Support(ctx context.Context, req *databasev1.MeasureAggregateFunctionServiceSupportRequest) (*databasev1.MeasureAggregateFunctionServiceSupportResponse, error) {
func (ms *measureAggregateFunctionServer) Support(_ context.Context, _ *databasev1.MeasureAggregateFunctionServiceSupportRequest) (
*databasev1.MeasureAggregateFunctionServiceSupportResponse, error,
) {
return &databasev1.MeasureAggregateFunctionServiceSupportResponse{
MeasureAggregateFunction: ms.supports,
}, nil
Expand Down

0 comments on commit e2f8157

Please sign in to comment.