Skip to content

Commit

Permalink
Merge branch 'master' into add-typing-to-coordinator
Browse files Browse the repository at this point in the history
  • Loading branch information
dimastbk committed May 30, 2024
2 parents 89d1535 + 9f63955 commit 3941ba3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aiokafka/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async def _metadata_update(self, cluster_metadata, topics):
try:
metadata = await conn.send(metadata_request)
except (KafkaError, asyncio.TimeoutError) as err:
log.error(
log.warning(
"Unable to request metadata from node with id %s: %r", node_id, err
)
continue
Expand Down
5 changes: 4 additions & 1 deletion requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ pytest==7.4.3
pytest-cov==4.1.0
pytest-asyncio==0.21.1
pytest-mock==3.12.0
docker==6.1.3
docker==7.0.0
# TODO Remove this pi after update of `docker`
# https://github.com/docker/docker-py/pull/3257
requests==2.31.0
docutils==0.20.1
Pygments==2.15.0
gssapi==1.8.3
Expand Down
5 changes: 4 additions & 1 deletion requirements-win-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ pytest==7.4.3
pytest-cov==4.1.0
pytest-asyncio==0.21.1
pytest-mock==3.12.0
docker==6.1.3
docker==7.0.0
# TODO Remove this pi after update of `docker`
# https://github.com/docker/docker-py/pull/3257
requests==2.31.0
cramjam==2.8.0

0 comments on commit 3941ba3

Please sign in to comment.