You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
each step implements IStepBody interface. For example:
publicclassPublishFinishedProduct:IStepBody{//attributes and ctor//...publicasyncTask<ExecutionResult>RunAsync(IStepExecutionContextcontext){//getting data from the contextvardata= context.Workflow.Data as FinishedProductWorkflowData;//some logic that needs to be executed//...return ExecutionResult.Next();}}
I have a problem when I switch from the default persistence provider to the SQL Server.
All the tables are created and a workflow seems to be started. I can find rows inside the database for the particular workflow execution.
I have:
Row inside the Workflow table with Data attribute populated with correct data.
Row inside the ExecutionPointer table that is pointing to the correct row in the Workflow table and the step is the first step in my workflow (CreateFinishedProduct)
ExecutionError table is empty
My workflow is started by hitting a dedicated endpoint like this:
I have a Workflow that consists 3 steps.
each step implements IStepBody interface. For example:
I have a problem when I switch from the default persistence provider to the SQL Server.
All the tables are created and a workflow seems to be started. I can find rows inside the database for the particular workflow execution.
I have:
My workflow is started by hitting a dedicated endpoint like this:
But the steps are not executed !
I can't debug them, also I can't find any record that shows me the execution inside the database.
Everything works with the default persistence provider
Any help?
The text was updated successfully, but these errors were encountered: