Skip to content

Commit

Permalink
fix missing ProcessPartitionEventAsync handler (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt authored Oct 22, 2024
1 parent 40f722b commit c9a0b73
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public EventProcessorHost(ConstructorArguments args, string fullyQualifiedNamesp
this.factory = args.Factory;
this.traceHelper = args.TraceHelper;
this.PartitionInitializingAsync += this.OpenPartitionAsync;
this.ProcessEventAsync += this.ProcessPartitionEventAsync;
this.PartitionClosingAsync += this.ClosePartitionAsync;
this.ProcessErrorAsync += this.ErrorAsync;
}
Expand Down

0 comments on commit c9a0b73

Please sign in to comment.