aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2024-02-02 15:54:57 -0800
committerchrislu <chris.lu@gmail.com>2024-02-02 15:54:57 -0800
commitd41792461cfaae905808ec5f9a602a81f5e1cb5c (patch)
treeedcf74fe1b3752bb3a9980e163f59efac6be0a6e /other/java
parentd30150dde18c21c3c3af97cd935da27e2213f8cf (diff)
downloadseaweedfs-d41792461cfaae905808ec5f9a602a81f5e1cb5c.tar.xz
seaweedfs-d41792461cfaae905808ec5f9a602a81f5e1cb5c.zip
lock returns host and owner
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 0c3b8eddc..02ba7c65f 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -452,8 +452,9 @@ message LockRequest {
}
message LockResponse {
string renew_token = 1;
- string moved_to = 2;
- string error = 3;
+ string lock_owner = 2;
+ string lock_host_moved_to = 3;
+ string error = 4;
}
message UnlockRequest {
string name = 1;