Skip to content

Commit

Permalink
fix: rectify the inheritance order so RetryConsumer method overrides …
Browse files Browse the repository at this point in the history
…are first
  • Loading branch information
stefan-cardnell-rh committed Oct 19, 2024
1 parent 9139575 commit 16d9c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_kafka/retry/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def build(cls, consumer_cls: Type["Consumer"]) -> Optional[Type["RetryConsumer"]

return type[RetryConsumer](
f"{consumer_cls.__name__}Retry",
(consumer_cls, cls),
(cls, consumer_cls),
{
"topics": RetryTopics(group_id, *retryable_tcs),
"config": {
Expand Down

0 comments on commit 16d9c2d

Please sign in to comment.