aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-11-03 01:09:48 -0700
committerChris Lu <chris.lu@gmail.com>2021-11-03 01:09:48 -0700
commitaf71ae11aa29350a60ed7d3b9a16276a06ba9dcc (patch)
treea59876d14e41191709169276cc18daadeddef820 /other/java/client/src
parentab97b17e62503066598f9cf9ecaf4dba4ee2d6d8 (diff)
downloadseaweedfs-af71ae11aa29350a60ed7d3b9a16276a06ba9dcc.tar.xz
seaweedfs-af71ae11aa29350a60ed7d3b9a16276a06ba9dcc.zip
master: rename grpc function KeepConnected() to SubscribeVolumeLocationUpdates()
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 921ffc674..94d522643 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -57,7 +57,7 @@ service SeaweedFiler {
rpc SubscribeLocalMetadata (SubscribeMetadataRequest) returns (stream SubscribeMetadataResponse) {
}
- rpc KeepConnected (stream KeepConnectedRequest) returns (stream KeepConnectedResponse) {
+ rpc SubscribeVolumeLocationUpdates (stream SubscribeVolumeLocationUpdatesRequest) returns (stream SubscribeVolumeLocationUpdatesResponse) {
}
rpc LocateBroker (LocateBrokerRequest) returns (LocateBrokerResponse) {
@@ -341,12 +341,12 @@ message LogEntry {
bytes data = 3;
}
-message KeepConnectedRequest {
+message SubscribeVolumeLocationUpdatesRequest {
string name = 1;
uint32 grpc_port = 2;
repeated string resources = 3;
}
-message KeepConnectedResponse {
+message SubscribeVolumeLocationUpdatesResponse {
}
message LocateBrokerRequest {