-
Notifications
You must be signed in to change notification settings - Fork 10
Description
The Option argument is only on SetBatch.Set
, so it applies for all paths in the SetRequest:
func (sb *SetBatch) Set(ctx context.Context, c *Client, opts ...Option) (*Result, error) {
req := &gpb.SetRequest{}
for _, op := range sb.ops {
path, err := resolvePath(op.path)
if err != nil {
return nil, err
}
if err := populateSetRequest(req, path, op.val, op.mode, op.config, opts...); err != nil {
return nil, err
}
}
...
Since it's referenced in the for loop, these options are clearly per-path (e.g. ygnmi.WithSetFallbackEncoding()
is a per-path option) but the current API doesn't allow for different options for different paths.
If we do move the option to the individual batch calls, however, there may be downstream implications for ondatra:
https://github.com/openconfig/ondatra/blob/3b28896095b89670014dfb197224a83a50a9b5f2/gnmi/gnmi.go#L372-L381
So the root problem seems to be some of the options are per-client, while for others it is per-path.
I would like to break Ondatra's API to allow for a per-path behaviour. The use case is to Batch set CLI+OC in the same SetRequest.
@DanG100 Have any thoughts on how to support this?