Skip to content
This repository was archived by the owner on Jan 28, 2025. It is now read-only.

Commit 2395840

Browse files
committed
use local hardcoded address
1 parent 41a9d94 commit 2395840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/deppy/input/catalogsource/registry_grpc_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func NewRegistryGRPCClient(grpcTimeout time.Duration, client client.Client) Regi
3333

3434
func (r *registryGRPCClient) ListEntities(ctx context.Context, catalogSource *v1alpha1.CatalogSource) ([]*input.Entity, error) {
3535
// TODO: create GRPC connections separately
36-
conn, err := grpc.ConnectWithTimeout(ctx, catalogSource.Address(), r.timeout)
36+
conn, err := grpc.ConnectWithTimeout(ctx, "127.0.0.1:50051", r.timeout)
3737
if conn != nil {
3838
defer conn.Close()
3939
}

0 commit comments

Comments
 (0)