diff --git a/internal/csi-common/server.go b/internal/csi-common/server.go index 330210bab..a17daa153 100644 --- a/internal/csi-common/server.go +++ b/internal/csi-common/server.go @@ -148,8 +148,8 @@ func (s *nonBlockingGRPCServer) serve(endpoint, hstOptions string, srv Servers, klog.Fatalf("failed to parse histogram count value: %v", e) } buckets := prometheus.ExponentialBuckets(start, factor, count) - bktOptios := grpc_prometheus.WithHistogramBuckets(buckets) - grpc_prometheus.EnableHandlingTimeHistogram(bktOptios) + bktOptions := grpc_prometheus.WithHistogramBuckets(buckets) + grpc_prometheus.EnableHandlingTimeHistogram(bktOptions) grpc_prometheus.Register(server) } err = server.Serve(listener)