aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-04-16 00:44:31 -0700
committerChris Lu <chris.lu@gmail.com>2019-04-16 00:44:31 -0700
commitb3b42bc947ec44acdc69efdeebb623a0c092078a (patch)
tree9fecee1d6f5bced1e7e1436a331e8c8973db8a78 /other/java/client/src
parent967e108b9a33d4e3cdd59dacd3356c070ed312a9 (diff)
downloadseaweedfs-b3b42bc947ec44acdc69efdeebb623a0c092078a.tar.xz
seaweedfs-b3b42bc947ec44acdc69efdeebb623a0c092078a.zip
replicate need to include new entry path
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 07c73f1d4..350288b53 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -72,10 +72,16 @@ message Entry {
map<string, bytes> extended = 5;
}
+message FullEntry {
+ string dir = 1;
+ Entry entry = 2;
+}
+
message EventNotification {
Entry old_entry = 1;
Entry new_entry = 2;
bool delete_chunks = 3;
+ string new_parent_path = 4;
}
message FileChunk {