diff options
author | Taras Voinarovskyi <voyn1991@gmail.com> | 2017-10-25 07:28:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 07:28:35 +0900 |
commit | 8b05ee8da50b4c7b832676f4e38f9d92a86639cc (patch) | |
tree | 91fe16e3c9aff44ca93633824b96da4b8ff19384 /test/test_fetcher.py | |
parent | 4213d53d4ccfd239addc1db07b5b3913b4c6547c (diff) | |
download | kafka-python-8b05ee8da50b4c7b832676f4e38f9d92a86639cc.tar.gz |
Add DefaultRecordBatch implementation aka V2 message format parser/builder. (#1185)
Added bytecode optimization for varint and append/read_msg functions. Mostly based on avoiding LOAD_GLOBAL calls.
Diffstat (limited to 'test/test_fetcher.py')
-rw-r--r-- | test/test_fetcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_fetcher.py b/test/test_fetcher.py index 364a808..ef3f686 100644 --- a/test/test_fetcher.py +++ b/test/test_fetcher.py @@ -54,7 +54,7 @@ def _build_record_batch(msgs, compression=0): magic=1, compression_type=0, batch_size=9999999) for msg in msgs: key, value, timestamp = msg - builder.append(key=key, value=value, timestamp=timestamp) + builder.append(key=key, value=value, timestamp=timestamp, headers=[]) builder.close() return builder.buffer() |