We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running: await context.CallActivityAsync<string>(nameof(MyActivity));
await context.CallActivityAsync<string>(nameof(MyActivity));
[Function(nameof(MyActivity))] public Task<string[]> MyActivity([ActivityTrigger] string trigger, FunctionContext functionContext)
results in: Could not populate the value for 'trigger' parameter. Consider updating the parameter with a default value.
Could not populate the value for 'trigger' parameter. Consider updating the parameter with a default value.
Which is weird, since CallActivityAsync is supposed to have a default value for object? input = null.
object? input = null
The text was updated successfully, but these errors were encountered:
Most likely related to #2674
Sorry, something went wrong.
I have the same problem with default null input parameters. I also have the same problem described in #2674.
It might be related, but I only have the quotes problem when using DurableTask 1.1.0.
Fixed by #2708
No branches or pull requests
When running:
await context.CallActivityAsync<string>(nameof(MyActivity));
results in:
Could not populate the value for 'trigger' parameter. Consider updating the parameter with a default value.
Which is weird, since CallActivityAsync is supposed to have a default value for
object? input = null
.The text was updated successfully, but these errors were encountered: