Skip to content

Commit

Permalink
backend: remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
weeco committed Sep 24, 2024
1 parent 2a94367 commit 12524b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/api/connect/service/license/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (s Service) SetLicense(ctx context.Context, req *connect.Request[v1alpha1.S

// ListEnterpriseFeatures reports the license status and Redpanda enterprise features in use.
// This can only be reported if the Redpanda Admin API is configured and supports this request.
func (s Service) ListEnterpriseFeatures(ctx context.Context, c *connect.Request[v1alpha1.ListEnterpriseFeaturesRequest]) (*connect.Response[v1alpha1.ListEnterpriseFeaturesResponse], error) {
func (s Service) ListEnterpriseFeatures(ctx context.Context, _ *connect.Request[v1alpha1.ListEnterpriseFeaturesRequest]) (*connect.Response[v1alpha1.ListEnterpriseFeaturesResponse], error) {
// Use this hook to ensure the requester is some authenticated user.
// It doesn't matter what permissions we check. As long as the requester
// has at least one viewer permission we know this user is authenticated.
Expand Down

0 comments on commit 12524b6

Please sign in to comment.