potiuk commented on code in PR #49938: URL: https://github.com/apache/airflow/pull/49938#discussion_r2069017281
########## providers/common/messaging/src/airflow/providers/common/messaging/providers/__init__.py: ########## @@ -16,6 +16,7 @@ # under the License. from __future__ import annotations +from airflow.providers.common.messaging.providers.kafka import KafkaMessageQueueProvider from airflow.providers.common.messaging.providers.sqs import SqsMessageQueueProvider -MESSAGE_QUEUE_PROVIDERS = [SqsMessageQueueProvider()] +MESSAGE_QUEUE_PROVIDERS = [SqsMessageQueueProvider(), KafkaMessageQueueProvider()] Review Comment: This is what we would have to do to make it happens - we would have to discover the available providers from the packages installed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
