Skip to content

Commit

Permalink
fix error wrt request source
Browse files Browse the repository at this point in the history
  • Loading branch information
msistla96 committed May 15, 2024
1 parent eb1a746 commit cf3da66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/internal/feast/server/http_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ func (s *httpServer) getOnlineFeatures(w http.ResponseWriter, r *http.Request) {
for key, value := range entityKeyTypeMap {
unifiedMap[key] = value
}
} else if requestSources != nil && len(requestSources) > 0 {
}
if requestSources != nil && len(requestSources) > 0 {
for key, value := range requestSources {
unifiedMap[key] = value
}
Expand Down

0 comments on commit cf3da66

Please sign in to comment.