[#107] Regenerate proto files
All checks were successful
Tests and linters / Tests (1.23) (pull_request) Successful in 1m1s
Tests and linters / Tests with -race (pull_request) Successful in 1m32s
Tests and linters / Tests (1.22) (pull_request) Successful in 45s
Tests and linters / Lint (pull_request) Successful in 1m56s
DCO action / DCO (pull_request) Successful in 28s
All checks were successful
Tests and linters / Tests (1.23) (pull_request) Successful in 1m1s
Tests and linters / Tests with -race (pull_request) Successful in 1m32s
Tests and linters / Tests (1.22) (pull_request) Successful in 45s
Tests and linters / Lint (pull_request) Successful in 1m56s
DCO action / DCO (pull_request) Successful in 28s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
981dc785f3
commit
9e82a5a31a
3 changed files with 8 additions and 20 deletions
20
object/grpc/service_frostfs.pb.go
generated
20
object/grpc/service_frostfs.pb.go
generated
|
@ -739,9 +739,9 @@ func (x *GetResponse_Body) GetInit() *GetResponse_Body_Init {
|
|||
func (x *GetResponse_Body) SetInit(v *GetResponse_Body_Init) {
|
||||
x.ObjectPart = &GetResponse_Body_Init_{Init: v}
|
||||
}
|
||||
func (x *GetResponse_Body) GetChunk() *GetResponse_Body_Chunk {
|
||||
func (x *GetResponse_Body) GetChunk() []byte {
|
||||
if xx, ok := x.GetObjectPart().(*GetResponse_Body_Chunk); ok {
|
||||
return xx
|
||||
return xx.Chunk
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -813,8 +813,6 @@ func (x *GetResponse_Body) MarshalEasyJSON(out *jwriter.Writer) {
|
|||
out.RawString(prefix[1:])
|
||||
xx.EcInfo.MarshalEasyJSON(out)
|
||||
}
|
||||
default:
|
||||
out.RawString("null")
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
@ -1486,9 +1484,9 @@ func (x *PutRequest_Body) GetInit() *PutRequest_Body_Init {
|
|||
func (x *PutRequest_Body) SetInit(v *PutRequest_Body_Init) {
|
||||
x.ObjectPart = &PutRequest_Body_Init_{Init: v}
|
||||
}
|
||||
func (x *PutRequest_Body) GetChunk() *PutRequest_Body_Chunk {
|
||||
func (x *PutRequest_Body) GetChunk() []byte {
|
||||
if xx, ok := x.GetObjectPart().(*PutRequest_Body_Chunk); ok {
|
||||
return xx
|
||||
return xx.Chunk
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -1530,8 +1528,6 @@ func (x *PutRequest_Body) MarshalEasyJSON(out *jwriter.Writer) {
|
|||
out.RawString(prefix[1:])
|
||||
out.Base64Bytes(xx.Chunk)
|
||||
}
|
||||
default:
|
||||
out.RawString("null")
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
@ -3674,8 +3670,6 @@ func (x *HeadResponse_Body) MarshalEasyJSON(out *jwriter.Writer) {
|
|||
out.RawString(prefix[1:])
|
||||
xx.EcInfo.MarshalEasyJSON(out)
|
||||
}
|
||||
default:
|
||||
out.RawString("null")
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
@ -5706,9 +5700,9 @@ func (x *GetRangeResponse_Body) GetRangePart() isGetRangeResponse_Body_RangePart
|
|||
func (x *GetRangeResponse_Body) SetRangePart(v isGetRangeResponse_Body_RangePart) {
|
||||
x.RangePart = v
|
||||
}
|
||||
func (x *GetRangeResponse_Body) GetChunk() *GetRangeResponse_Body_Chunk {
|
||||
func (x *GetRangeResponse_Body) GetChunk() []byte {
|
||||
if xx, ok := x.GetRangePart().(*GetRangeResponse_Body_Chunk); ok {
|
||||
return xx
|
||||
return xx.Chunk
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -5774,8 +5768,6 @@ func (x *GetRangeResponse_Body) MarshalEasyJSON(out *jwriter.Writer) {
|
|||
out.RawString(prefix[1:])
|
||||
xx.EcInfo.MarshalEasyJSON(out)
|
||||
}
|
||||
default:
|
||||
out.RawString("null")
|
||||
}
|
||||
out.RawByte('}')
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue