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

Add MQTT Sink #659

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

Add MQTT Sink #659

wants to merge 5 commits into from

Conversation

SteveRosam
Copy link
Contributor

@SteveRosam SteveRosam commented Nov 27, 2024

Added MQTT connector
Added tests
Updated pyproject.toml
Updated tests/requirement.txt

Resolves #658

@daniil-quix daniil-quix added the connector Issues updating Sinks or Sources label Nov 28, 2024
Comment on lines +24 to +32
mqtt_client_id: str,
mqtt_server: str,
mqtt_port: int,
mqtt_topic_root: str,
mqtt_username: str = None,
mqtt_password: str = None,
mqtt_version: str = "3.1.1",
tls_enabled: bool = True,
qos: int = 1,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
mqtt_client_id: str,
mqtt_server: str,
mqtt_port: int,
mqtt_topic_root: str,
mqtt_username: str = None,
mqtt_password: str = None,
mqtt_version: str = "3.1.1",
tls_enabled: bool = True,
qos: int = 1,
client_id: str,
server: str,
port: int,
topic_root: str,
username: str = None,
password: str = None,
version: str = "3.1.1",
tls_enabled: bool = True,
qos: int = 1,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
connector Issues updating Sinks or Sources
Projects
Status: No status
Development

Successfully merging this pull request may close these issues.

New Sink: MQTT
3 participants