aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-07-27 03:26:35 -0700
committerChris Lu <chris.lu@gmail.com>2021-07-27 03:26:35 -0700
commit1752eeb53803736f72d85d35f504997744288716 (patch)
tree84bd46b78c25dcbcbfd4227c47b4b2979600ff67 /other/java
parent4b94b03d90a97dfd6fecc55e7091055bf5fc329c (diff)
downloadseaweedfs-1752eeb53803736f72d85d35f504997744288716.tar.xz
seaweedfs-1752eeb53803736f72d85d35f504997744288716.zip
remote.mount saves the mapping
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
1 files changed, 1 insertions, 5 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 12f9a8505..efecc4e97 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -392,10 +392,6 @@ message RemoteConf {
string s3_endpoint = 7;
}
-message RemoteStorageMappingList {
- repeated RemoteStorageMapping mappings = 1;
-}
message RemoteStorageMapping {
- string dir = 1;
- string remote_storage_name = 2;
+ map<string,string> mappings = 1;
}