Skip to content

Commit

Permalink
properly-formatted transformation server endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
William Parsley committed Nov 30, 2023
1 parent 16ff755 commit c405962
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/internal/feast/featurestore.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package feast
import (
"context"
"errors"
"fmt"

"github.com/apache/arrow/go/v8/arrow/memory"

Expand Down Expand Up @@ -55,7 +56,7 @@ func NewFeatureStore(config *registry.RepoConfig, callback transformation.Transf
if err != nil {
return nil, err
}
endpoint := "http://odfv-deployment-transformations.unified-feature-store.svc.cluster.local:8080" // TODO: replace with a config or real value
endpoint := fmt.Sprintf("http://%s-transformations.unified-feature-store.svc.cluster.local:6569", config.Project)
transformationService, _ := transformation.NewGrpcTransformationService(config, endpoint)

return &FeatureStore{
Expand Down

0 comments on commit c405962

Please sign in to comment.