@@ -656,7 +656,7 @@ def ingest(
656656 _check_field_mappings (
657657 column_names ,
658658 name ,
659- feature_table .batch_source .timestamp_column ,
659+ feature_table .batch_source .event_timestamp_column ,
660660 feature_table .batch_source .field_mapping ,
661661 )
662662
@@ -671,7 +671,7 @@ def ingest(
671671 column_names ,
672672 pyarrow_table ,
673673 feature_table .batch_source .date_partition_column ,
674- feature_table .batch_source .timestamp_column ,
674+ feature_table .batch_source .event_timestamp_column ,
675675 )
676676 else :
677677 dir_path , dest_path = _write_non_partitioned_table_from_source (
@@ -680,12 +680,12 @@ def ingest(
680680
681681 try :
682682 if issubclass (type (feature_table .batch_source ), FileSource ):
683- file_url = feature_table .batch_source .file_options .file_url [: - 1 ]
683+ file_url = feature_table .batch_source .file_options .file_url . rstrip ( "*" )
684684 _upload_to_file_source (file_url , with_partitions , dest_path )
685685 if issubclass (type (feature_table .batch_source ), BigQuerySource ):
686686 bq_table_ref = feature_table .batch_source .bigquery_options .table_ref
687687 feature_table_timestamp_column = (
688- feature_table .batch_source .timestamp_column
688+ feature_table .batch_source .event_timestamp_column
689689 )
690690
691691 _upload_to_bq_source (
0 commit comments