Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
msistla96 committed May 2, 2024
1 parent 55e7e39 commit 5281307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/internal/feast/onlineserving/serving.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ func GetEntityMaps(requestedFeatureViews []*FeatureViewAndRefs, entities []*mode
for _, entityName := range featureView.EntityNames {
joinKey := entitiesByName[entityName].JoinKey
entityNameToJoinKeyMap[entityName] = joinKey
log.Info().Msgf("entityNameToJoinKeyMap in GetEntityMaps after loop %v",entityNameToJoinKeyMap))
log.Info().Msgf("entityNameToJoinKeyMap in GetEntityMaps after loop %v", entityNameToJoinKeyMap)
if alias, ok := joinKeyToAliasMap[joinKey]; ok {
expectedJoinKeysSet[alias] = nil
} else {
expectedJoinKeysSet[joinKey] = nil
}
log.Info().Msgf("expectedJoinKeysSet in GetEntityMaps after loop %v",expectedJoinKeysSet))
log.Info().Msgf("expectedJoinKeysSet in GetEntityMaps after loop %v", expectedJoinKeysSet)
}
}
return entityNameToJoinKeyMap, expectedJoinKeysSet, nil
Expand Down

0 comments on commit 5281307

Please sign in to comment.