From 2a36a38ccfd245800b670a6c64f92c5bfeb8b555 Mon Sep 17 00:00:00 2001 From: Amin Heydari Alashti Date: Sun, 28 Nov 2021 15:48:52 +0330 Subject: [PATCH] Update README.md the apply function's arguments were not correctly organized. the feast entity and feature table should be on a list; however, the feature table object will be considered as the project name which should be a string. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e00aad6..c0ab5ff0 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,8 @@ ft = feast.FeatureTable( ) # Register objects in Feast -client.apply(entity, ft) +client.apply([entity, ft], client.project) # Start spark streaming ingestion job that reads from kafka and writes to the online store feast_spark.Client(client).start_stream_to_online_ingestion(ft) -``` \ No newline at end of file +```