You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/confluent_kafka/src/confluent_kafka.h
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -51,19 +51,19 @@
51
51
* Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error
52
52
* defines and strings in sync.
53
53
*/
54
-
#defineMIN_RD_KAFKA_VERSION0x020000ff // TODO: Check this
54
+
#defineMIN_RD_KAFKA_VERSION0x020002ff // TODO: Check this
55
55
56
56
#ifdef__APPLE__
57
-
#defineMIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.0.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
57
+
#defineMIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.0.2 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
58
58
#else
59
-
#defineMIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.0.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
59
+
#defineMIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.0.2 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
60
60
#endif
61
61
62
62
#ifRD_KAFKA_VERSION<MIN_RD_KAFKA_VERSION
63
63
#ifdef__APPLE__
64
-
#error "confluent-kafka-python requires librdkafka v2.0.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
64
+
#error "confluent-kafka-python requires librdkafka v2.0.2 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
65
65
#else
66
-
#error "confluent-kafka-python requires librdkafka v2.0.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
66
+
#error "confluent-kafka-python requires librdkafka v2.0.2 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
0 commit comments