Sverre Winkelmans
Sverre Winkelmans
When scoped services are getting injected in custom activities, only `IDiposable` is currently supported for cleaning up resources of the scoped services. If a scoped service only supports `IAsyncDisposable` a...
I've ported the retention module from Elsa V2 to V3. Usage is similar to before: ```c# elsa .UseRetention(options => { options.ConfigureCleanupOptions = cleanUp => { cleanUp.TimeToLive = TimeSpan.FromDays(7); cleanUp.SweepInterval =...
## Description When using the `Context.SetVariable` the variable is not stored after the workflow was suspended. The storage provider is the `WorkflowStorageDriver`. ## Steps to Reproduce Using the following snippet...
In #5810, OpenTelemetry support was introduced. It would be valuable to extend this functionality by providing default metrics for the workflow engine, allowing for better observability and performance tracking. The...
This PR fixes #7034. By passing in the tenant headers when executing Cancel to a suspended workflow with the default cancellation dispatcher. - - - This change is [](https://reviewable.io/reviews/elsa-workflows/elsa-core/7040)
## Description I cannot cancel a workflow via the Elsa Studio. I'm running Elsa 3.5.1 with Multitenant feature. Cancelling the workflow will return a 200 OK to the studio but...