aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-09-24 11:11:42 -0700
committerChris Lu <chris.lu@gmail.com>2020-09-24 11:11:42 -0700
commit1012df7bb55341fb7d835269cf9bb7edc6507d25 (patch)
tree4ec73d9833a48dd1210e99e19bc935454d9815ee /other/java/client/src
parent4856bce0ee929088c64e311b4ac554e872fba12e (diff)
downloadseaweedfs-1012df7bb55341fb7d835269cf9bb7edc6507d25.tar.xz
seaweedfs-1012df7bb55341fb7d835269cf9bb7edc6507d25.zip
switch hardlink id from int64 to bytes
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index f0334a377..daa20c378 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -95,7 +95,7 @@ message Entry {
repeated FileChunk chunks = 3;
FuseAttributes attributes = 4;
map<string, bytes> extended = 5;
- int64 hard_link_id = 7;
+ bytes hard_link_id = 7;
int32 hard_link_counter = 8; // only exists in hard link meta data
}