From 552de12024bcb76b89badc0530880634d6476dbc Mon Sep 17 00:00:00 2001 From: Zach Reyes <39203661+zasweq@users.noreply.github.com> Date: Thu, 8 Sep 2022 15:54:27 -0400 Subject: [PATCH] orca: fix package used to reference service to use pb suffix instead of grpc (#5647) orca: fix package used to reference service to use pb suffix instead of grpc (#5647) --- orca/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orca/service.go b/orca/service.go index 07da569754b..7816dcc1eca 100644 --- a/orca/service.go +++ b/orca/service.go @@ -112,7 +112,7 @@ func Register(s *grpc.Server, opts ServiceOptions) (*Service, error) { // negative or is less than the configured minimum (via // ServiceOptions.MinReportingInterval), the latter is used. Else the value from // the incoming request is used. -func (s *Service) determineReportingInterval(req *v3orcaservicegrpc.OrcaLoadReportRequest) time.Duration { +func (s *Service) determineReportingInterval(req *v3orcaservicepb.OrcaLoadReportRequest) time.Duration { if req.GetReportInterval() == nil { return s.minReportingInterval }