Skip to content

Commit 7789d61

Browse files
committed
bug #92
1 parent 11d7376 commit 7789d61

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/WorkflowCore/Services/BackgroundTasks/EventConsumer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private async Task<bool> SeedSubscription(Event evt, EventSubscription sub, Canc
6666
try
6767
{
6868
var workflow = await _persistenceStore.GetWorkflowInstance(sub.WorkflowId);
69-
var pointers = workflow.ExecutionPointers.Where(p => p.EventName == sub.EventName && p.EventKey == sub.EventKey && !p.EventPublished);
69+
var pointers = workflow.ExecutionPointers.Where(p => p.EventName == sub.EventName && p.EventKey == sub.EventKey && !p.EventPublished && p.EndTime == null);
7070
foreach (var p in pointers)
7171
{
7272
p.EventData = evt.EventData;

src/WorkflowCore/WorkflowCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1717
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1818
<Description>Workflow Core is a light weight workflow engine targeting .NET Standard.</Description>
19-
<Version>1.4.0</Version>
20-
<AssemblyVersion>1.4.0.0</AssemblyVersion>
21-
<FileVersion>1.4.0.0</FileVersion>
19+
<Version>1.4.1</Version>
20+
<AssemblyVersion>1.4.1.0</AssemblyVersion>
21+
<FileVersion>1.4.1.0</FileVersion>
2222
<PackageReleaseNotes></PackageReleaseNotes>
2323
</PropertyGroup>
2424

0 commit comments

Comments
 (0)