Skip to content

Commit

Permalink
Merge branch 'master' into remove-distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha committed Aug 7, 2024
2 parents 689ccf3 + 232c4cf commit e558858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions faust/transport/drivers/aiokafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -1570,9 +1570,9 @@ async def _really_create_topic(
return
response = wait_result.result

assert len(response.topic_error_codes), "single topic"
assert len(response.topic_errors), "single topic"

_, code, reason = response.topic_error_codes[0]
_, code, reason = response.topic_errors[0]

if code != 0:
if not ensure_created and code == TopicExistsError.errno:
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiohttp>=3.8.0,<4.0
aiohttp_cors>=0.7,<2.0
aiokafka>=0.9.0
aiokafka>=0.10.0
click>=6.7,<8.2
mode-streaming>=0.4.0
opentracing>=1.3.0,<=2.4.0
Expand Down

0 comments on commit e558858

Please sign in to comment.