workflow-core icon indicating copy to clipboard operation
workflow-core copied to clipboard

Lightweight workflow engine for .NET Standard

Results 280 workflow-core issues
Sort by recently updated
recently updated
newest added

Hi, I start my worklow `await workflowHost.StartWorkflow(myWorflowId, workflowData);` but it doesn't wait for finish. How can I make sure that the following code is executed only after the worklfow is...

**Describe the bug** The documentation (in release notes) for RunWorkflowSync is out of date. **To Reproduce** Try and do: ``` var runner = serviceProvider.GetService(); ... var worfklow = await runner.RunWorkflowSync("my-workflow",...

**Is your feature request related to a problem? Please describe.** The following code throws the following thread error: ```csharp host.OnStepError += async (workflow, step, exception) => { logger.LogError(exception, "Step error...

**Is your feature request related to a problem? Please describe.** Hi, I see that there is an IWorkflowPurger created for SQL Server, Postgres and MongoDB. Do we have the same...

https://github.com/danielgerlag/workflow-core/blob/30c98f83c5d70bae11dd2b65bada0db5619340f3/src/WorkflowCore/Services/FluentBuilders/WorkflowBuilder.cs#L18 I wasn't expecting Retry to be the default error handler for workflows. On error, I wanted my workflow to terminate. Turns out it repeated over and over on a...

There is an issue with ScheduleCommand where we are seeing excessive logging of an exception(see below) regarding UniqueIndex when writing to MongoDB(also when using redis queue provider with mongo persistence)...

My team recently upgraded one of our microservices where we use workflow-core in combination with sql. After the upgrade we noticed when starting a workflow: await workflowHost.StartWorkflow(settings.FlowId, data, $"{message.OrganisationId}::{message.CorrelationId}"); Only...

**Describe the bug** When using While the WaitFor step does not block and as a result I get a workflow locked exception. **To Reproduce** Steps to reproduce the behavior: Just...

Hello, Daniel, In Issue #330 you said you could provide an example of a workflow with approval/rejection given more detail. Could you please provide an idea for the following? The...