本文整理匯總了Golang中github.com/coreos/etcd/clientv3.Config.Password方法的典型用法代碼示例。如果您正苦於以下問題:Golang Config.Password方法的具體用法?Golang Config.Password怎麽用?Golang Config.Password使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/coreos/etcd/clientv3.Config
的用法示例。
在下文中一共展示了Config.Password方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: mustCreateConn
func mustCreateConn() *clientv3.Client {
endpoint := endpoints[dialTotal%len(endpoints)]
dialTotal++
cfg := clientv3.Config{Endpoints: []string{endpoint}}
if !tls.Empty() {
cfgtls, err := tls.ClientConfig()
if err != nil {
fmt.Fprintf(os.Stderr, "bad tls config: %v\n", err)
os.Exit(1)
}
cfg.TLS = cfgtls
}
if len(user) != 0 {
splitted := strings.SplitN(user, ":", 2)
if len(splitted) != 2 {
fmt.Fprintf(os.Stderr, "bad user information: %s\n", user)
os.Exit(1)
}
cfg.Username = splitted[0]
cfg.Password = splitted[1]
}
client, err := clientv3.New(cfg)
if err != nil {
fmt.Fprintf(os.Stderr, "dial error: %v\n", err)
os.Exit(1)
}
return client
}
示例2: API
func (p *ETCDConn) API(auth *Auth3) (*clientv3.Client, error) {
cfg := clientv3.Config{
Endpoints: p.endpoints,
TLS: p.t,
// set timeout per request to fail fast when the target endpoint is unavailable
DialTimeout: dialTimeout,
}
if auth != nil {
cfg.Username = auth.UserName
cfg.Password = auth.Password
}
return clientv3.New(cfg)
}