Skip to content

Commit

Permalink
tests/clients: rpk describe group error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsp committed Aug 8, 2022
1 parent 0c687f9 commit bcb2102
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/rptest/clients/rpk.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ def try_describe_group(group):
if "COORDINATOR_NOT_AVAILABLE" in e.msg:
# Transient, return None to retry
return None
elif "Kafka replied that group" in e.msg:
# Transient, return None to retry
# e.g. Kafka replied that group repeat01 has broker coordinator 8, but did not reply with that broker in the broker list
return None
else:
raise

Expand Down

0 comments on commit bcb2102

Please sign in to comment.