We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca1452 commit 5c987b3Copy full SHA for 5c987b3
sdk/python/feast/infra/passthrough_provider.py
@@ -148,10 +148,12 @@ def update_infra(
148
):
149
# Call update only if there is an online store
150
if self.online_store:
151
+ tables_to_keep_online = [fv for fv in tables_to_keep if not isinstance(fv, FeatureView) or fv.online]
152
+
153
self.online_store.update(
154
config=self.repo_config,
155
tables_to_delete=tables_to_delete,
- tables_to_keep=tables_to_keep,
156
+ tables_to_keep=tables_to_keep_online,
157
entities_to_keep=entities_to_keep,
158
entities_to_delete=entities_to_delete,
159
partial=partial,
0 commit comments