Skip to content

Commit

Permalink
Fig segfault when subscribing to non-existent topics.
Browse files Browse the repository at this point in the history
Work around a segfault that was introduced in
librdkafka/confluent-kafka-python 2.1.0 by disallowing that version
as a dependency.

See confluentinc/librdkafka#4245.

Fixes nasa-gcn#17.
  • Loading branch information
lpsinger committed Apr 18, 2023
1 parent ea9620c commit 990e784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
dependencies = [
"authlib",
"certifi",
"confluent-kafka >= 1.6.1",
"confluent-kafka >= 1.6.1, != 2.1.0",
"requests",
"typing-extensions; python_version<='3.7'"
]
Expand Down

0 comments on commit 990e784

Please sign in to comment.