-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Is your feature request related to a problem? Please describe.
neofs-api/object/service.proto
Line 303 in cf4caf5
SplitInfo split_info = 3; neofs-api/object/service.proto
Line 479 in cf4caf5
SplitInfo split_info = 3; neofs-api/object/service.proto
Line 678 in cf4caf5
SplitInfo split_info = 2;
are response body fields. In general, split info is a particular response payload. However, it is mutex with "normal" data - header and/or payload chunks. This makes it more of a response status
in Go SDK, https://pkg.go.dev/github.com/nspcc-dev/neofs-sdk-go/object#SplitInfoError is an error, and they are also kinda status
Describe the solution you'd like
dedicate new status code for split info.
Line 314 in cf4caf5
| message SplitInfo { |
Line 164 in cf4caf5
| neo.fs.v2.refs.Version version = 1 [json_name = "version"]; |
Describe alternatives you've considered
no more
Additional context
developing new object GET API