Skip to content

Commit 5ad5bea

Browse files
committed
event key issue
1 parent ef688c8 commit 5ad5bea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/WorkflowCore/Services/EventThread.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private bool SeedSubscription(Event evt, EventSubscription sub)
102102
try
103103
{
104104
var workflow = _persistenceStore.GetWorkflowInstance(sub.WorkflowId).Result;
105-
var pointers = workflow.ExecutionPointers.Where(p => p.EventName == sub.EventName && p.EventKey == p.EventKey && !p.EventPublished);
105+
var pointers = workflow.ExecutionPointers.Where(p => p.EventName == sub.EventName && p.EventKey == sub.EventKey && !p.EventPublished);
106106
foreach (var p in pointers)
107107
{
108108
p.EventData = evt.EventData;

src/WorkflowCore/WorkflowCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1919
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
2020
<Description>Workflow Core is a light weight workflow engine targeting .NET Standard.</Description>
21-
<Version>1.1.1</Version>
21+
<Version>1.1.2</Version>
2222
</PropertyGroup>
2323

2424
<ItemGroup>

0 commit comments

Comments
 (0)