Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refact: change to false in unprocessed entity set
Signed-off-by: iamcodingcat <joyh951021@gmail.com>
  • Loading branch information
iamcodingcat committed Jun 25, 2025
commit 9d62354e2ee9b7ee8918d8e273665467b73da5d1
2 changes: 1 addition & 1 deletion go/internal/feast/onlinestore/dynamodbonlinestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (d *DynamodbOnlineStore) OnlineRead(ctx context.Context, entityKeys []*type
entityId := hex.EncodeToString(mmh3.Hashx64_128(*serKey, 0))
entityIds = append(entityIds, entityId)
entityIndexMap[entityId] = i
unprocessedEntityIds[entityId] = true
unprocessedEntityIds[entityId] = false
}

// metadata from feature views, feature names
Expand Down