diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2017-03-29 14:17:58 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2017-03-29 17:35:09 -0700 |
commit | d40d106c7327a842ab393fb86d1be0048b0a83ba (patch) | |
tree | 393a4cff5fbfa297cb49c118d9214f0643f6b4b8 /kafka/client_async.py | |
parent | acbb510b8d2aa9e85c79e2a0e1341f8c5084a3eb (diff) | |
download | kafka-python-d40d106c7327a842ab393fb86d1be0048b0a83ba.tar.gz |
Fix poll() hyperlink in KafkaClient
Previously Sphinx was auto-linking to `poll()` in `KafkaConsumer`, so made the link explicit.
Diffstat (limited to 'kafka/client_async.py')
-rw-r--r-- | kafka/client_async.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/client_async.py b/kafka/client_async.py index 18d2b0c..cf62a8a 100644 --- a/kafka/client_async.py +++ b/kafka/client_async.py @@ -50,7 +50,7 @@ class KafkaClient(object): Attributes: cluster (:any:`ClusterMetadata`): Local cache of cluster metadata, retrieved - via MetadataRequests during :meth:`.poll`. + via MetadataRequests during :meth:`~kafka.KafkaClient.poll`. Keyword Arguments: bootstrap_servers: 'host[:port]' string (or list of 'host[:port]' |