Alex Jones

Results 2 comments of Alex Jones

Something like the following? ```python class ManyOnlineStoresPassthroughConfig(RepoConfig): online_stores: Dict class ManyOnlineStoresFeatureView(FeatureView): online_stores: List[str] class SpecificPassthroughProvider(PassthroughProvider): def online_write_batch(self, config: ManyOnlineStoresPassthroughConfig, table: ManyOnlineStoresFeatureView, *args, **kwargs) -> None: for store_name, store_details in config.online_stores.items():...

Did you get a solution for this? It's making our gitlab builds pass even though the tests fail.