Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/proto/FunctionRpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,10 @@ message FunctionsMetadataRequest {
// Worker sends function metadata back to host
message FunctionMetadataResponses {
// list of function indexing responses
repeated FunctionLoadRequest results = 1;
repeated FunctionLoadRequest function_load_requests_results = 1;

// status of overall metadata request
StatusResult overall_status = 2;
StatusResult result = 2;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consistency w/ other messages - StatusResult type is generally returned in "result".

}

// Host requests worker to invoke a Function
Expand Down