Application interaction -> Task/{taskID}/complete does'nt run as expected #7288
Unanswered
dbornawidacom
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I use Elsa 3.5.3, MS-SQL-Server. I want to build a application to procced "RunTask"
I have build this workflow.
I complete task inj this code.
public async Task CompleteTaskAndResumeWorkflowAsync(
string taskId,
string workflowInstanceId,
string subStatus = "Finished",
object? result = null,
CancellationToken cancellationToken = default)
{
// 1️⃣ Task Complete aufrufen
var completePayload = new
{
status = "approved",
subStatus = "Done",
result = "Done"
};
}
Than workflow run like this picture, but the workflow doesn't go to state fnished.
Any Ideas?
Beta Was this translation helpful? Give feedback.
All reactions