Skip to content

Commit cc744ad

Browse files
committed
Deprecate checksum field in FileMdProto and add a checksums field to hold the list of checksums of the resource
1 parent edacfcd commit cc744ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rpc.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,14 @@ message FileMdProto {
119119
bytes link_name = 9;
120120
Time ctime = 10; // change time
121121
Time mtime = 11; // modification time
122-
Checksum checksum =12;
122+
Checksum checksum = 12 [deprecated = true];
123123
repeated uint32 locations = 13;
124124
repeated uint32 unlink_locations = 14;
125125
map<string, bytes> xattrs = 15;
126126
bytes path = 16;
127127
string etag = 17;
128128
uint64 inode = 18;
129+
repeated Checksum checksums = 19;
129130
}
130131

131132
message ContainerMdProto {

0 commit comments

Comments
 (0)