@@ -38,7 +38,7 @@ pub struct SiftStreamBuilderPy {
3838 enable_tls : bool ,
3939 /// Ingestion config form. Must be set before calling [`build()`][SiftStreamBuilderPy::build].
4040 #[ pyo3( get, set) ]
41- ingestion_config : Option < IngestionConfigFormPy > ,
41+ ingestion_config_form : Option < IngestionConfigFormPy > ,
4242 /// Optional run to associate with the stream. Mutually exclusive with `run_id`;
4343 /// if both are set, `run_id` takes precedence.
4444 #[ pyo3( get, set) ]
@@ -64,7 +64,7 @@ impl SiftStreamBuilderPy {
6464 uri : uri. into ( ) ,
6565 apikey : apikey. into ( ) ,
6666 enable_tls : true ,
67- ingestion_config : None ,
67+ ingestion_config_form : None ,
6868 run : None ,
6969 run_id : None ,
7070 asset_tags : None ,
@@ -76,12 +76,12 @@ impl SiftStreamBuilderPy {
7676 ///
7777 /// This is the quick path: `ingestion_config` must be set; all other fields are optional.
7878 /// For other modes (checkpointing, disk backups, tunable capacities), use
79- /// [`ingestion_config()`][SiftStreamBuilderPy::ingestion_config ] to advance to the full
79+ /// [`ingestion_config()`][SiftStreamBuilderPy::ingestion_config_form ] to advance to the full
8080 /// builder chain.
8181 ///
8282 /// Returns a coroutine that resolves to a [`SiftStreamPy`].
8383 pub fn build ( & mut self , py : Python ) -> PyResult < Py < PyAny > > {
84- let ingestion_config = self . ingestion_config . clone ( ) . ok_or_else ( || {
84+ let ingestion_config = self . ingestion_config_form . clone ( ) . ok_or_else ( || {
8585 pyo3:: exceptions:: PyValueError :: new_err (
8686 "ingestion_config must be set before calling build()" ,
8787 )
0 commit comments