Skip to content

Commit ca1a16d

Browse files
authored
fix: parameter, libs (#341)
1 parent 2a19009 commit ca1a16d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

butterfree/load/writers/historical_feature_store_writer.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,14 @@ def __init__(
113113
debug_mode: bool = False,
114114
interval_mode: bool = False,
115115
check_schema_hook: Hook = None,
116+
row_count_validation: bool = True,
116117
):
117118
super(HistoricalFeatureStoreWriter, self).__init__(
118-
db_config or MetastoreConfig(), debug_mode, interval_mode
119+
db_config or MetastoreConfig(),
120+
debug_mode,
121+
interval_mode,
122+
False,
123+
row_count_validation,
119124
)
120125
self.database = database or environment.get_variable(
121126
"FEATURE_STORE_HISTORICAL_DATABASE"

requirements.dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ sphinxemoji==0.1.8
77
sphinx-rtd-theme==0.5.2
88
recommonmark==0.7.1
99
pyarrow>=1.0.0
10+
setuptools
11+
wheel

0 commit comments

Comments
 (0)