ni / grpc-device

gRPC server providing remote access to NI device driver APIs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RFSG attribute methods use inconsistent parameter name

gregstoll opened this issue · comments

Specifically, here's a sample request:

message SetAttributeViBooleanRequest {
  nidevice_grpc.Session vi = 1;
  string channel_name = 2;
  NiRFSGAttributes attribute = 3;
  bool value = 4;
}

but RFSA and most other drivers use attribute_id instead of attribute.

AB#1724759