test discov

This commit is contained in:
wangchuxiao 2023-06-01 16:49:08 +08:00
parent d9d64d810b
commit cd273a9094

View File

@ -101,11 +101,11 @@ func NewClient(zkServers []string, zkRoot string, options ...ZkOption) (*ZkClien
return nil, err
}
resolver.Register(client)
var wg sync.WaitGroup
wg.Add(2)
// var wg sync.WaitGroup
// wg.Add(2)
// go client.refresh(&wg)
// go client.watch(&wg)
wg.Wait()
// wg.Wait()
return client, nil
}