Skip to content

Commit

Permalink
fix(ingest): Fixing lint (#6844)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoyce0510 authored Dec 22, 2022
1 parent 0f8e2d9 commit 4cba09e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion metadata-ingestion/src/datahub/configuration/kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ class _KafkaConnectionConfig(ConfigModel):
description="Extra schema registry config serialized as JSON. These options will be passed into Kafka's SchemaRegistryClient. https://docs.confluent.io/platform/current/clients/confluent-kafka-python/html/index.html?#schemaregistryclient",
)

client_timeout_seconds: int = Field(default=60, description="The request timeout used when interacting with the Kafka APIs.")
client_timeout_seconds: int = Field(
default=60,
description="The request timeout used when interacting with the Kafka APIs.",
)

@validator("bootstrap")
def bootstrap_host_colon_port_comma(cls, val: str) -> str:
Expand Down

0 comments on commit 4cba09e

Please sign in to comment.