Browse Source
Removes line that added the kafka key to headers an extra time. (#524)
This caused any messages published by CAP with a kafka key set to not be consumable by CAP.
Co-authored-by: Andrew Jaffie <andrewj@avi.com>
master
Andrew Jaffie
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
2 deletions
-
src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs
|
|
@@ -62,8 +62,6 @@ namespace DotNetCore.CAP.Kafka |
|
|
|
} |
|
|
|
headers.Add(Messages.Headers.Group, _groupId); |
|
|
|
|
|
|
|
headers.Add(KafkaHeaders.KafkaKey, consumerResult.Key); |
|
|
|
|
|
|
|
if (_kafkaOptions.CustomHeaders != null) |
|
|
|
{ |
|
|
|
var customHeaders = _kafkaOptions.CustomHeaders(consumerResult); |
|
|
|