Ver código fonte
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 anos atrás
committed by
GitHub
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com
0 adições e
2 exclusões
-
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); |
|
|
|