Skip to content

Commit

Permalink
Removes double underscored deprecated field (#2873)
Browse files Browse the repository at this point in the history
This breaks type checking on mypy-proto 3.4+ otherwise
  • Loading branch information
freider authored Feb 17, 2025
1 parent 4c9fba3 commit 66a4254
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modal_proto/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ message FunctionAsyncInvokeRequest {
string function_id = 1;
string parent_input_id = 2;
FunctionInput input = 3;
}
}

message FunctionAsyncInvokeResponse {
bool retry_with_blob_upload = 1;
Expand Down Expand Up @@ -1370,7 +1370,6 @@ message FunctionCreateRequest {

message FunctionCreateResponse {
string function_id = 1;
string __deprecated_web_url = 2 [ deprecated = true]; // Used up until 0.62.212
Function function = 4;
FunctionHandleMetadata handle_metadata = 5;
}
Expand Down Expand Up @@ -1779,7 +1778,7 @@ message ImageFromIdRequest {
message ImageFromIdResponse {
string image_id = 1;
ImageMetadata metadata = 2;
}
}

message ImageGetOrCreateRequest {
Image image = 2;
Expand Down

0 comments on commit 66a4254

Please sign in to comment.