Skip to content
Merged
Show file tree
Hide file tree
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
fix comment
Signed-off-by: Danny Chiao <danny@tecton.ai>
  • Loading branch information
adchia committed Apr 18, 2022
commit 42f6e2727b12eae0bf00376e41d235056c4ddd64
2 changes: 1 addition & 1 deletion docs/reference/data-sources/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fv = FeatureView(
name="feature view",
entities=["user_id"],
schema=[Field(name="life_time_value", dtype=Int64)],
stream_source=push_source,
source=push_source,
)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,5 +251,5 @@ def create_pushable_feature_view(batch_source: DataSource):
# Test that Features still work for FeatureViews.
features=[Feature(name="temperature", dtype=ValueType.INT32)],
ttl=timedelta(days=2),
stream_source=push_source,
source=push_source,
)