Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: Rename edenhill -> confluentinc #31398

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bazel/foreign_cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ configure_make(
name = "librdkafka_build",
configure_in_place = True,
configure_options = ["--disable-ssl --disable-gssapi --disable-zstd --disable-curl && cp Makefile.config src/.. && cp config.h src/.."],
lib_source = "@edenhill_librdkafka//:all",
lib_source = "@confluentinc_librdkafka//:all",
out_static_libs = [
"librdkafka.a",
"librdkafka++.a",
Expand Down
2 changes: 1 addition & 1 deletion bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ filegroup(
# This archive provides Kafka C/CPP client used by mesh filter to communicate with upstream
# Kafka clusters.
external_http_archive(
name = "edenhill_librdkafka",
name = "confluentinc_librdkafka",
build_file_content = BUILD_ALL_CONTENT,
# (adam.kotwasinski) librdkafka bundles in cJSON, which is also bundled in by libvppinfra.
# For now, let's just drop this dependency from Kafka, as it's used only for monitoring.
Expand Down
2 changes: 1 addition & 1 deletion bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ REPOSITORY_LOCATIONS_SPEC = dict(
license = "Apache-2.0",
license_url = "https://github.com/apache/kafka/blob/{version}/LICENSE",
),
edenhill_librdkafka = dict(
confluentinc_librdkafka = dict(
project_name = "Kafka (C/C++ client)",
project_desc = "C/C++ client for Apache Kafka (open-source distributed event streaming platform)",
project_url = "https://github.com/confluentinc/librdkafka",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class KafkaProducer {
// Theoretically we do not need to do this and leave it all to destructor, but then closing N
// producers would require doing that in sequence, while we can optimize it somewhat (so we just
// wait for the slowest one).
// See https://github.com/edenhill/librdkafka/issues/2972
// See https://github.com/confluentinc/librdkafka/issues/2972
virtual void markFinished() PURE;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ std::vector<InboundRecordSharedPtr> RichKafkaConsumer::receiveRecordBatch() {

// XXX (adam.kotwasinski) There could be something more present in the consumer,
// and we could drain it (at least a little) in the next commits.
// See: https://github.com/edenhill/librdkafka/discussions/3897
// See: https://github.com/confluentinc/librdkafka/discussions/3897
return {inbound_record};
} else {
// Nothing extraordinary (timeout because there is nothing upstream),
Expand Down
2 changes: 1 addition & 1 deletion tools/dependency/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ envoy_genjson(
srcs = ["//bazel:all_repository_locations"],
filter = """
.[0]
| del(.edenhill_librdkafka)
| del(.confluentinc_librdkafka)
""",
)

Expand Down