@@ -106,23 +106,11 @@ func createConnector(ctx context.Context, dgName string) (*dgraphConnector, erro
106
106
}
107
107
108
108
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" {
121
110
opts = []grpc.DialOption {
122
- grpc .WithTransportCredentials (creds ),
123
- grpc .WithPerRPCCredentials (& authCreds {conKey }),
111
+ grpc .WithTransportCredentials (insecure .NewCredentials ()),
124
112
}
125
- } else if strings . Split ( connection . GrpcTarget , ":" )[ 0 ] != "localhost" {
113
+ } else {
126
114
pool , err := x509 .SystemCertPool ()
127
115
if err != nil {
128
116
return nil , err
@@ -131,9 +119,12 @@ func createConnector(ctx context.Context, dgName string) (*dgraphConnector, erro
131
119
opts = []grpc.DialOption {
132
120
grpc .WithTransportCredentials (creds ),
133
121
}
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
+ }
137
128
}
138
129
}
139
130
0 commit comments