Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Another fix
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
  • Loading branch information
felixwang9817 committed May 3, 2022
commit 121480dff0bd16a2bcd3cc50d4961b9700df8b0a
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,10 @@ def create_pushable_feature_view(batch_source: DataSource):
return FeatureView(
name="pushable_location_stats",
entities=[location()],
# Test that Features still work for FeatureViews.
features=[Feature(name="temperature", dtype=ValueType.INT32)],
schema=[
Field(name="temperature", dtype=Int32),
Field(name="location_id", dtype=Int64),
],
ttl=timedelta(days=2),
source=push_source,
)