Skip to content

Commit

Permalink
Fixed batch options documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Aug 6, 2023
1 parent 567cff0 commit a678ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/content/3.documentation/5.configuration/1.consumers.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ AddConsumer<MyBatchConsumer>(cfg =>
.SetMessageLimit(100)
.SetTimeLimit(s: 1)
.SetTimeLimitStart(BatchTimeLimitStart.FromLast)
.GroupBy<MyMessage>(x => x.CustomerId)
.GroupBy<MyMessage, string>(x => x.CustomerId)
.SetConcurrencyLimit(10));
});
```
Expand Down

0 comments on commit a678ac2

Please sign in to comment.