Skip to content

Commit 01a2c0c

Browse files
authored
fix(ingest/kafka): update dependency, tests (#12159)
1 parent 2285436 commit 01a2c0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

metadata-ingestion/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# now provide prebuilt wheels for most platforms, including M1 Macs and
7777
# Linux aarch64 (e.g. Docker's linux/arm64). Installing confluent_kafka
7878
# from source remains a pain.
79-
"confluent_kafka>=1.9.0",
79+
"confluent_kafka[schemaregistry]>=1.9.0",
8080
# We currently require both Avro libraries. The codegen uses avro-python3 (above)
8181
# schema parsers at runtime for generating and reading JSON into Python objects.
8282
# At the same time, we use Kafka's AvroSerializer, which internally relies on

metadata-ingestion/tests/integration/kafka/test_kafka.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_kafka_test_connection(mock_kafka_service, config_dict, is_success):
102102
test_connection_helpers.assert_capability_report(
103103
capability_report=report.capability_report,
104104
failure_capabilities={
105-
SourceCapability.SCHEMA_METADATA: "Failed to establish a new connection"
105+
SourceCapability.SCHEMA_METADATA: "[Errno 111] Connection refused"
106106
},
107107
)
108108

0 commit comments

Comments
 (0)