Incorrect RelatedEntityCollector Registration in Elsa Docs #6964
McahitKutsal
started this conversation in
General
Replies: 1 comment
-
|
Thanks, this looks like a real docs inconsistency. From the current retention code:
Relevant source:
So the guide example in The best next step here is probably a docs PR against the guide. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the Elsa documentation about Retention, the usage example for the RelatedEntityCollector is shown as follows:
Services.AddScoped<IRelatedEntityCollector<WorkflowInstanceData>, WorkflowInstanceDataRecordCollector>();However, it should actually be registered like this:
Services.AddScoped<IRelatedEntityCollector, WorkflowInstanceDataRecordCollector>();Beta Was this translation helpful? Give feedback.
All reactions