Skip to content

Commit

Permalink
Support angle brackets in function names (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
pelletier authored Mar 7, 2024
2 parents 2334b77 + 0247edf commit a53808e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dispatch/sdk/v1/call.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ message Call {
// received by the function service when the asynchronous call is made.
string function = 3 [
(buf.validate.field).required = true,
(buf.validate.field).string.pattern = "^[a-zA-Z_][a-zA-Z0-9_]*$"
(buf.validate.field).string.pattern = "^[a-zA-Z_][a-zA-Z0-9_<>.]*$"
];

// Arguments to the coroutine.
Expand Down

0 comments on commit a53808e

Please sign in to comment.