We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 962b0dd commit d9bd76dCopy full SHA for d9bd76d
1 file changed
dgraph/cmd/live/run.go
@@ -252,7 +252,9 @@ func setup(opts batchMutationOptions, dc *dgo.Dgraph) *loader {
252
x.Checkf(err, "Error while creating badger KV posting store")
253
254
// compression with zero server actually makes things worse
255
- connzero, err := x.SetupConnection(opt.zero, &tlsConf, false)
+ connzero, err := x.SetupConnection(opt.zero, &x.TLSHelperConfig{
256
+ CertRequired: false,
257
+ }, false)
258
x.Checkf(err, "Unable to connect to zero, Is it running at %s?", opt.zero)
259
260
alloc := xidmap.New(
0 commit comments