Skip to content

Commit

Permalink
[BUG] Fix key path for validate read (#304)
Browse files Browse the repository at this point in the history
* Fix key path

* bump version

Co-authored-by: AlvaroMarquesAndrade <1a789766b1c4c8b679e80f11fa6d63d42fa4bcdf>
  • Loading branch information
moromimay authored Mar 30, 2021
1 parent 0d30932 commit d607297
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion butterfree/load/writers/historical_feature_store_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def validate(
feature set dataframe.
"""
table_name = (
f"{feature_set.name}"
os.path.join("historical", feature_set.entity, feature_set.name)
if self.interval_mode and not self.debug_mode
else (
f"{self.database}.{feature_set.name}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

__package_name__ = "butterfree"
__version__ = "1.2.0.dev4"
__version__ = "1.2.0.dev5"
__repository_url__ = "https://github.com/quintoandar/butterfree"

with open("requirements.txt") as f:
Expand Down

0 comments on commit d607297

Please sign in to comment.