Skip to content

Commit

Permalink
orca: fix package used to reference service to use pb suffix instead …
Browse files Browse the repository at this point in the history
…of grpc (#5647)

orca: fix package used to reference service to use pb suffix instead of grpc (#5647)
  • Loading branch information
zasweq committed Sep 8, 2022
1 parent 87d1a90 commit 552de12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orca/service.go
Expand Up @@ -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
}
Expand Down

0 comments on commit 552de12

Please sign in to comment.