Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function_version to Call #32

Merged
merged 2 commits into from
May 24, 2024
Merged
Changes from 1 commit
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: 4 additions & 0 deletions dispatch/sdk/v1/call.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ message Call {
//
// The value might be capped to a maximum by the service handling the call.
google.protobuf.Duration expiration = 5 [(buf.validate.field).duration.gte = {seconds: 0}];

// Version of the function to select during execution.
// The version is an optional field and not supported by all execution platforms.
string function_version = 6;
}

// CallResult is the result of a call operation.
Expand Down
Loading