Skip to content

Commit dc2b34d

Browse files
committed
[BUG] Fix key path for validate read (#304)
* Fix key path * bump version Co-authored-by: AlvaroMarquesAndrade <1a789766b1c4c8b679e80f11fa6d63d42fa4bcdf>
1 parent c8d5326 commit dc2b34d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

butterfree/load/writers/historical_feature_store_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def validate(
227227
feature set dataframe.
228228
"""
229229
table_name = (
230-
f"{feature_set.name}"
230+
os.path.join("historical", feature_set.entity, feature_set.name)
231231
if self.interval_mode and not self.debug_mode
232232
else (
233233
f"{self.database}.{feature_set.name}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
__package_name__ = "butterfree"
4-
__version__ = "1.2.0.dev4"
4+
__version__ = "1.2.0.dev5"
55
__repository_url__ = "https://github.com/quintoandar/butterfree"
66

77
with open("requirements.txt") as f:

0 commit comments

Comments
 (0)