diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-05-28 15:58:26 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-06-05 14:32:01 -0700 |
commit | bc4cc434cddf403a35d0393d68ecfdbfad17c8e5 (patch) | |
tree | b74c5190a0fd74afffb5318d4bd34b59ae33e25c /test/test_client_async.py | |
parent | 81cda595b3ecf17737b4e4d86efa230db2e9bd31 (diff) | |
download | kafka-python-bc4cc434cddf403a35d0393d68ecfdbfad17c8e5.tar.gz |
Don't use `kafka.common` internally1.3.5
This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`.
Diffstat (limited to 'test/test_client_async.py')
-rw-r--r-- | test/test_client_async.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_client_async.py b/test/test_client_async.py index eccb564..09781ac 100644 --- a/test/test_client_async.py +++ b/test/test_client_async.py @@ -13,14 +13,13 @@ import time import pytest from kafka.client_async import KafkaClient, IdleConnectionManager +from kafka.cluster import ClusterMetadata from kafka.conn import ConnectionStates import kafka.errors as Errors from kafka.future import Future from kafka.protocol.metadata import MetadataResponse, MetadataRequest from kafka.protocol.produce import ProduceRequest from kafka.structs import BrokerMetadata -from kafka.cluster import ClusterMetadata -from kafka.future import Future @pytest.fixture |