Skip to content

Commit 594b10c

Browse files
fix: dgraph connection should ignore key for localhost (#793)
1 parent b67d1c8 commit 594b10c

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
# Change Log
44

5+
## 2025-03-18 - Runtime 0.17.4
6+
7+
- fix: dgraph connection should ignore key for localhost [#793](https://github.com/hypermodeinc/modus/pull/793)
8+
59
## 2025-03-13 - CLI 0.17.1
610

711
- chore: cleanup unused dependencies and update remaining [#790](https://github.com/hypermodeinc/modus/pull/790)

runtime/dgraphclient/registry.go

+9-18
Original file line numberDiff line numberDiff line change
@@ -106,23 +106,11 @@ func createConnector(ctx context.Context, dgName string) (*dgraphConnector, erro
106106
}
107107

108108
var opts []grpc.DialOption
109-
110-
if connection.Key != "" {
111-
conKey, err := secrets.ApplySecretsToString(ctx, info, connection.Key)
112-
if err != nil {
113-
return nil, err
114-
}
115-
116-
pool, err := x509.SystemCertPool()
117-
if err != nil {
118-
return nil, err
119-
}
120-
creds := credentials.NewClientTLSFromCert(pool, "")
109+
if strings.Split(connection.GrpcTarget, ":")[0] == "localhost" {
121110
opts = []grpc.DialOption{
122-
grpc.WithTransportCredentials(creds),
123-
grpc.WithPerRPCCredentials(&authCreds{conKey}),
111+
grpc.WithTransportCredentials(insecure.NewCredentials()),
124112
}
125-
} else if strings.Split(connection.GrpcTarget, ":")[0] != "localhost" {
113+
} else {
126114
pool, err := x509.SystemCertPool()
127115
if err != nil {
128116
return nil, err
@@ -131,9 +119,12 @@ func createConnector(ctx context.Context, dgName string) (*dgraphConnector, erro
131119
opts = []grpc.DialOption{
132120
grpc.WithTransportCredentials(creds),
133121
}
134-
} else {
135-
opts = []grpc.DialOption{
136-
grpc.WithTransportCredentials(insecure.NewCredentials()),
122+
if connection.Key != "" {
123+
if conKey, err := secrets.ApplySecretsToString(ctx, info, connection.Key); err != nil {
124+
return nil, err
125+
} else if conKey != "" {
126+
opts = append(opts, grpc.WithPerRPCCredentials(&authCreds{conKey}))
127+
}
137128
}
138129
}
139130

0 commit comments

Comments
 (0)