summaryrefslogtreecommitdiff
path: root/kafka/protocol/fetch.py
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2017-06-19 17:18:59 -0700
committerDana Powers <dana.powers@gmail.com>2017-06-19 17:18:59 -0700
commitcf8c034b895839236247217ff8f8980bf28d63da (patch)
tree17f037fced57eed7899754469361ef84cb9b9d7f /kafka/protocol/fetch.py
parent2533680134ee8bfd8ab590114bd699340671f65f (diff)
downloadkafka-python-protocol_updates.tar.gz
Cleanup protocol change commentsprotocol_updates
Diffstat (limited to 'kafka/protocol/fetch.py')
-rw-r--r--kafka/protocol/fetch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kafka/protocol/fetch.py b/kafka/protocol/fetch.py
index 6a61300..359f197 100644
--- a/kafka/protocol/fetch.py
+++ b/kafka/protocol/fetch.py
@@ -135,7 +135,7 @@ class FetchRequest_v3(Request):
class FetchRequest_v4(Request):
- """Adds isolation_level field"""
+ # Adds isolation_level field
API_KEY = 1
API_VERSION = 4
RESPONSE_TYPE = FetchResponse_v4
@@ -155,7 +155,7 @@ class FetchRequest_v4(Request):
class FetchRequest_v5(Request):
- """This may only be used in broker-broker api calls"""
+ # This may only be used in broker-broker api calls
API_KEY = 1
API_VERSION = 5
RESPONSE_TYPE = FetchResponse_v5