Hi all.
I am running into this error with the dotnet-sdk:
UpdateWorkflowExecution operation is disabled on this namespace
Which happens with I try to call a update method:
[WorkflowUpdate]
public async Task UpdateApprovalRequest(bool approved) =>
this.approved = approved;
I am calling it with:
await handle.ExecuteUpdateAsync(wf => wf.UpdateApprovalRequest(true));
How do I update the namespace to allow workflow updates to function correctly?
I am running the latest Temporal in docker on my local machine.
Thanks.