Skip to content

Commit 3f72228

Browse files
committed
resolve merge conflicts
Signed-off-by: Miguel Trejo <armando.trejo.marrufo@gmail.com>
1 parent 449f60d commit 3f72228

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

sdk/python/feast/infra/online_stores/dynamodb.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ def online_read(
213213
online_config = config.online_store
214214
assert isinstance(online_config, DynamoDBOnlineStoreConfig)
215215
dynamodb_resource = self._get_dynamodb_resource(online_config.region)
216-
table_instance = dynamodb_resource.Table(_get_table_name(config, table))
216+
table_instance = dynamodb_resource.Table(
217+
_get_table_name(online_config, config, table)
218+
)
217219

218220
result: List[Tuple[Optional[datetime], Optional[Dict[str, ValueProto]]]] = []
219221
entity_ids = [compute_entity_id(entity_key) for entity_key in entity_keys]

0 commit comments

Comments
 (0)