We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 449f60d commit 3f72228Copy full SHA for 3f72228
1 file changed
sdk/python/feast/infra/online_stores/dynamodb.py
@@ -213,7 +213,9 @@ def online_read(
213
online_config = config.online_store
214
assert isinstance(online_config, DynamoDBOnlineStoreConfig)
215
dynamodb_resource = self._get_dynamodb_resource(online_config.region)
216
- table_instance = dynamodb_resource.Table(_get_table_name(config, table))
+ table_instance = dynamodb_resource.Table(
217
+ _get_table_name(online_config, config, table)
218
+ )
219
220
result: List[Tuple[Optional[datetime], Optional[Dict[str, ValueProto]]]] = []
221
entity_ids = [compute_entity_id(entity_key) for entity_key in entity_keys]
0 commit comments