Skip to content

Commit

Permalink
Fix pipeline inclusion of static binaries (#4666)
Browse files Browse the repository at this point in the history
without gssapi dependency
  • Loading branch information
emasab authored Apr 4, 2024
1 parent 267367c commit a6c8cec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ librdkafka v2.3.1 is a maintenance release:
check the [release notes](https://www.openssl.org/news/cl30.txt).
* Integration tests can be started in KRaft mode and run against any
GitHub Kafka branch other than the released versions.
* Fix pipeline inclusion of static binaries (#4666)


## Fixes

### General fixes

* In librdkafka release pipeline a static build containing libsasl2
could be chosen instead of the alternative one without it.
That caused the libsasl2 dependency to be required in confluent-kafka-go
v2.1.0-linux-musl-arm64 and v2.3.0-linux-musl-arm64.
Solved by correctly excluding the binary configured with that library,
when targeting a static build.
Happening since v2.0.2, with specified platforms, when using static binaries (#4666).



# librdkafka v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion packaging/nuget/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def apply_mappings(self):
attr = attr[1:]

if attr in a.info and \
a.info[attr] != m.attributes[origattr]:
a.info[attr] == m.attributes[origattr]:
found = False
break
else:
Expand Down

0 comments on commit a6c8cec

Please sign in to comment.