Skip to content

Commit fd5b620

Browse files
fix: Making the query_timeout variable as optional int because upstream is considered to be optional (#4092)
1 parent 3afa78e commit fd5b620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/infra/contrib/spark_kafka_processor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class SparkProcessorConfig(ProcessorConfig):
2222
spark_session: SparkSession
2323
processing_time: str
24-
query_timeout: int
24+
query_timeout: Optional[int] = None
2525

2626

2727
class SparkKafkaProcessor(StreamProcessor):

0 commit comments

Comments
 (0)