File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,21 @@ librdkafka v2.3.1 is a maintenance release:
6
6
check the [ release notes] ( https://www.openssl.org/news/cl30.txt ) .
7
7
* Integration tests can be started in KRaft mode and run against any
8
8
GitHub Kafka branch other than the released versions.
9
+ * Fix pipeline inclusion of static binaries (#4666 )
10
+
11
+
12
+ ## Fixes
13
+
14
+ ### General fixes
15
+
16
+ * In librdkafka release pipeline a static build containing libsasl2
17
+ could be chosen instead of the alternative one without it.
18
+ That caused the libsasl2 dependency to be required in confluent-kafka-go
19
+ v2.1.0-linux-musl-arm64 and v2.3.0-linux-musl-arm64.
20
+ Solved by correctly excluding the binary configured with that library,
21
+ when targeting a static build.
22
+ Happening since v2.0.2, with specified platforms, when using static binaries (#4666 ).
23
+
9
24
10
25
11
26
# librdkafka v2.3.0
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ def apply_mappings(self):
380
380
attr = attr [1 :]
381
381
382
382
if attr in a .info and \
383
- a .info [attr ] ! = m .attributes [origattr ]:
383
+ a .info [attr ] = = m .attributes [origattr ]:
384
384
found = False
385
385
break
386
386
else :
You can’t perform that action at this time.
0 commit comments