Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

get_historical_features - drop unnecessary REQUEST_ID column #39

Merged
merged 1 commit into from
Aug 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wyvern-ai"
version = "0.0.12"
version = "0.0.13"
description = ""
authors = ["Wyvern AI <info@wyvern.ai>"]
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions wyvern/feature_store/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ async def get_historical_features(
right_on=["REQUEST_ID", entity_identifier_type.upper()],
how="left",
)
df.drop(columns=["REQUEST_ID"], inplace=True)

feast_requests = build_historical_registry_feature_requests(
store=store,
Expand Down