Closed nitinjs closed 2 years ago
The runner object should be reset taskid property everytime. We have updated this method.
public IWorkflowService CreateRunner(string userID, string userName)
{
_wfAppRunner.UserID = userID;
_wfAppRunner.UserName = userName;
_wfAppRunner.TaskID = null;
return this;
}
hi,
I wonder if I have followed correct steps:
workflow definition
starting workflow and running till end task:
my problem is that workflow never reaches the last stage, it just repeats the first stage.
how do I achieve this?
help