Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Output Persistence of Async Activities #6542

Merged
merged 6 commits into from
Apr 1, 2025
Merged

Fix Output Persistence of Async Activities #6542

merged 6 commits into from
Apr 1, 2025

Conversation

sfmskywalker
Copy link
Member

@sfmskywalker sfmskywalker commented Mar 31, 2025

Introduced GetPersistableOutputAsync in IActivityExecutionMapper to streamline output persistence logic. Refactored the handling of activity persistence properties, replacing repetitive code with reusable methods. Removed unused dependencies and redundant methods, optimizing code readability and maintainability.


This change is Reviewable

Bob Hauser and others added 4 commits December 19, 2024 15:47
Introduced `GetPersistableOutputAsync` in `IActivityExecutionMapper` to streamline output persistence logic. Refactored the handling of activity persistence properties, replacing repetitive code with reusable methods. Removed unused dependencies and redundant methods, optimizing code readability and maintainability.
The docker-compose-datadog.yml file is no longer included in the solution structure. This change cleans up unused references to ensure the solution remains consistent and up-to-date.
Split and reorganize workflow-related extension methods into `RunActivityExtensions` and `RunWorkflowExtensions` for better modularity. Removed deprecated methods from `ServiceProviderExtensions`. Updated tests and usages to reflect these changes.
@sfmskywalker sfmskywalker changed the title Refactor activity execution mapping and output persistence Fix Output Persistence of Async Activities Mar 31, 2025
@sfmskywalker sfmskywalker requested a review from Copilot March 31, 2025 18:04
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR fixes issues with output persistence in asynchronous activities by refactoring how activity outputs are captured. Key changes include:

  • Introducing the GetPersistableOutputAsync (and related GetPersistableInputAsync) methods in IActivityExecutionMapper and updating callers accordingly.
  • Removing the legacy StorePropertyUsingPersistenceMode method and renaming it to FilterPropertiesUsingPersistenceMode.
  • Removing unused dependencies and cleaning up older test helper code for improved maintainability.

Reviewed Changes

Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
test/integration/Elsa.Workflows.IntegrationTests/Scenarios/RunAsynchronousActivityOutput/Tests.cs Added tests validating the output persistence for both sequential and parallel activities.
test/integration/Elsa.Workflows.IntegrationTests/Scenarios/RunAsynchronousActivityOutput/Activities/SampleActivity.cs Introduced a new SampleActivity to support async output persistence tests.
src/modules/Elsa.Workflows.Runtime/Services/DefaultActivityExecutionMapper.cs Extracted output/input persistence logic into dedicated methods, replacing repetitive code.
src/modules/Elsa.Workflows.Runtime/Services/BackgroundActivityInvoker.cs Updated to use the new GetPersistableOutputAsync method for output extraction.
src/modules/Elsa.Workflows.Runtime/Middleware/Activities/BackgroundActivityInvokerMiddleware.cs Modified how output values are set by passing an additional parameter.
src/modules/Elsa.Workflows.Runtime/Contracts/IActivityExecutonMapper.cs Extended the interface with the GetPersistableOutputAsync method.
src/common/Elsa.Testing.Shared.Integration/* Various cleanup and extension method updates to support the new persistence logic.
src/common/Elsa.Testing.Shared.Integration/DispatchWorkflowExtensions.cs Added a new extension to dispatch workflows and wait for completion using notifications.
Files not reviewed (1)
  • src/apps/Elsa.Server.Web/Elsa.Server.Web.csproj: Language not supported
Comments suppressed due to low confidence (1)

src/modules/Elsa.Workflows.Runtime/Middleware/Activities/BackgroundActivityInvokerMiddleware.cs:127

  • [nitpick] The updated call to context.Set now includes an additional parameter (outputDescriptor.Name). Please confirm that the consuming implementations of Set are updated accordingly and that this change is intentional.
context.Set(output, outputEntry.Value, outputDescriptor.Name);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants