diff options
author | Dana Powers <dana.powers@gmail.com> | 2017-06-19 17:18:59 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2017-06-19 17:18:59 -0700 |
commit | cf8c034b895839236247217ff8f8980bf28d63da (patch) | |
tree | 17f037fced57eed7899754469361ef84cb9b9d7f /kafka/protocol/fetch.py | |
parent | 2533680134ee8bfd8ab590114bd699340671f65f (diff) | |
download | kafka-python-protocol_updates.tar.gz |
Cleanup protocol change commentsprotocol_updates
Diffstat (limited to 'kafka/protocol/fetch.py')
-rw-r--r-- | kafka/protocol/fetch.py | 4 |
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 |