aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-11-05 17:52:15 -0700
committerChris Lu <chris.lu@gmail.com>2021-11-05 17:52:15 -0700
commit5ea86ef1dabfa6267eb68c1ef82939910f2d3505 (patch)
tree2957313fd024567eb8bb410468f1355c6706ae7a /other/java/client/src
parent314c32514b1134f5605ca8bc3e1cdf785943b53b (diff)
downloadseaweedfs-5ea86ef1dabfa6267eb68c1ef82939910f2d3505.tar.xz
seaweedfs-5ea86ef1dabfa6267eb68c1ef82939910f2d3505.zip
Revert "master: rename grpc function KeepConnected() to SubscribeVolumeLocationUpdates()"
This reverts commit af71ae11aa29350a60ed7d3b9a16276a06ba9dcc.
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 94d522643..921ffc674 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 SubscribeVolumeLocationUpdates (stream SubscribeVolumeLocationUpdatesRequest) returns (stream SubscribeVolumeLocationUpdatesResponse) {
+ rpc KeepConnected (stream KeepConnectedRequest) returns (stream KeepConnectedResponse) {
}
rpc LocateBroker (LocateBrokerRequest) returns (LocateBrokerResponse) {
@@ -341,12 +341,12 @@ message LogEntry {
bytes data = 3;
}
-message SubscribeVolumeLocationUpdatesRequest {
+message KeepConnectedRequest {
string name = 1;
uint32 grpc_port = 2;
repeated string resources = 3;
}
-message SubscribeVolumeLocationUpdatesResponse {
+message KeepConnectedResponse {
}
message LocateBrokerRequest {