Skip to content

Commit

Permalink
fix: Making the query_timeout variable as optional int because upstre…
Browse files Browse the repository at this point in the history
…am is considered to be optional (#4092)
  • Loading branch information
lokeshrangineni authored Apr 15, 2024
1 parent 3afa78e commit fd5b620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/contrib/spark_kafka_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class SparkProcessorConfig(ProcessorConfig):
spark_session: SparkSession
processing_time: str
query_timeout: int
query_timeout: Optional[int] = None


class SparkKafkaProcessor(StreamProcessor):
Expand Down

0 comments on commit fd5b620

Please sign in to comment.