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

Added logging to pinpoint issue #5033 #5034

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,18 @@ private async Task AddOrUpdateCoreAsync(MaterializedWorkflow materializedWorkflo
workflowDefinition.MaterializerName = materializedWorkflow.MaterializerName;

workflowDefinitionsToSave.Add(workflowDefinition);

// Temporary measure to try and find the root cause of https://github.com/elsa-workflows/elsa-core/issues/5033
var duplicates = workflowDefinitionsToSave.GroupBy(wd => wd.Id)
.Where(g => g.Count() > 1)
.Select(g => g.Key)
.ToList();

if (duplicates.Any())
{
throw new Exception($"Unable to update WorkflowDefinition with ids {string.Join(',', duplicates)} multiple times.");
}

await _workflowDefinitionStore.SaveManyAsync(workflowDefinitionsToSave, cancellationToken);
}

Expand Down
Loading