We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f25eb commit 7cb2aedCopy full SHA for 7cb2aed
src/DotNetCore.CAP.Kafka/CAP.KafkaOptions.cs
@@ -26,7 +26,16 @@ public KafkaOptions()
26
MainConfig = new Dictionary<string, string>();
27
RetriableErrorCodes = new List<ErrorCode>
28
{
29
- ErrorCode.GroupLoadInProgress
+ ErrorCode.GroupLoadInProgress,
30
+ ErrorCode.Local_Retry,
31
+ ErrorCode.RequestTimedOut,
32
+ ErrorCode.LeaderNotAvailable,
33
+ ErrorCode.NotLeaderForPartition,
34
+ ErrorCode.RebalanceInProgress,
35
+ ErrorCode.NotCoordinatorForGroup,
36
+ ErrorCode.NetworkException,
37
+ ErrorCode.GroupCoordinatorNotAvailable,
38
+ ErrorCode.Local_MaxPollExceeded
39
};
40
}
41
0 commit comments