Skip to content

Commit 6251ad7

Browse files
committed
Bound kafka client version
Starting with 2.0.4, the errors module does not expose a tuple of retriable errors: instead there is an attribute on each error type. Making journalpump compatible with both the old and new version is outside the scope of this change, so bound the kafka client version.
1 parent ec7f967 commit 6251ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
packages=find_packages(exclude=["test", "systest"]),
1111
extras_require={},
1212
install_requires=[
13-
"kafka-python",
13+
"kafka-python<2.0.4",
1414
"requests",
1515
"websockets",
1616
"aiohttp-socks",

0 commit comments

Comments
 (0)