aboutsummaryrefslogtreecommitdiff
path: root/weed/pb/filer.proto
diff options
context:
space:
mode:
Diffstat (limited to 'weed/pb/filer.proto')
-rw-r--r--weed/pb/filer.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/pb/filer.proto b/weed/pb/filer.proto
index 36b633899..1f440d19c 100644
--- a/weed/pb/filer.proto
+++ b/weed/pb/filer.proto
@@ -12,7 +12,7 @@ service SeaweedFiler {
rpc ListEntries (ListEntriesRequest) returns (ListEntriesResponse) {
}
- rpc GetFileAttributes (GetFileAttributesRequest) returns (GetFileAttributesResponse) {
+ rpc GetEntryAttributes (GetEntryAttributesRequest) returns (GetEntryAttributesResponse) {
}
rpc GetFileContent (GetFileContentRequest) returns (GetFileContentResponse) {
@@ -73,13 +73,13 @@ message FuseAttributes {
uint32 gid = 5;
}
-message GetFileAttributesRequest {
+message GetEntryAttributesRequest {
string name = 1;
string parent_dir = 2;
string file_id = 3;
}
-message GetFileAttributesResponse {
+message GetEntryAttributesResponse {
FuseAttributes attributes = 1;
}