-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Implement KIP-345 in aiokafka * fixing linting errors * fixing linting errors * fixing linting errors * Update tests.yml * Fix linting errors * Linting fixed, tests still failing * fixed tests. * Undoing a lot of linting * last few lints * Update assignors.py suppressing lgtm warning * fix linting * fix lgtm exception * fix trailing space * add KIP-345 tests, remove broker version check * use aiokafka AbstractPartitionAssignor * only test KIP-345 mode with valid Kafka versions * Update aiokafka/consumer/group_coordinator.py Co-authored-by: Denis Otkidach <denis.otkidach@gmail.com> * remove AbstractStaticPartitionAssignor * refactor _perform_assignment to use a JoinGroupResponse class as it's argument * poll periodically in kip-345 tests * update tests to use async_timeout * update isinstance function, use JoinGroupResponse_v5 for check --------- Co-authored-by: Vikram Patki 24489 <vpatki@wayfair.com> Co-authored-by: Vikram Patki <54442035+patkivikram@users.noreply.github.com> Co-authored-by: g-clef <spamblock@g-clef.net> Co-authored-by: Denis Otkidach <denis.otkidach@gmail.com>
- Loading branch information
1 parent
8818517
commit bc14e6d
Showing
7 changed files
with
426 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,6 @@ | |
|
||
log = logging.getLogger(__name__) | ||
|
||
(List, Future) | ||
|
||
|
||
class SubscriptionType(Enum): | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.