Skip to content

Commit d094834

Browse files
committed
Fix
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
1 parent eea45c9 commit d094834

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/python/feast/infra/passthrough_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def offline_write_batch(
110110
set_usage_attribute("provider", self.__class__.__name__)
111111

112112
if self.offline_store:
113-
self.offline_store.offline_write_batch(config, feature_view, data, progress)
113+
self.offline_store.__class__.offline_write_batch(config, feature_view, data, progress)
114114

115115
@log_exceptions_and_usage(sampler=RatioSampler(ratio=0.001))
116116
def online_read(

0 commit comments

Comments
 (0)