Skip to content

Commit

Permalink
✨ Add security_protocol all possible values (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmbmb committed Apr 11, 2023
1 parent 3edf959 commit 6abe86d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kaflow/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ def __init__(
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
kafka_api_version: str = "auto",
security_protocol: Literal["PLAINTEXT", "SSL"] = "PLAINTEXT",
security_protocol: Literal[
"PLAINTEXT", "SSL", "SASL_PLAINTEXT", "SASL_SSL"
] = "PLAINTEXT",
exclude_internal_topics: bool = True,
connection_max_idle_ms: int = 540000,
isolation_level: Literal[
Expand Down

0 comments on commit 6abe86d

Please sign in to comment.