mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #9491 from jiaxuanzhou/clientv3
clientv3: optimize func NewFromURL
This commit is contained in:
commit
2b7783028f
@ -94,6 +94,11 @@ func NewFromURL(url string) (*Client, error) {
|
|||||||
return New(Config{Endpoints: []string{url}})
|
return New(Config{Endpoints: []string{url}})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewFromURLs creates a new etcdv3 client from URLs.
|
||||||
|
func NewFromURLs(urls []string) (*Client, error) {
|
||||||
|
return New(Config{Endpoints: urls})
|
||||||
|
}
|
||||||
|
|
||||||
// Close shuts down the client's etcd connections.
|
// Close shuts down the client's etcd connections.
|
||||||
func (c *Client) Close() error {
|
func (c *Client) Close() error {
|
||||||
c.cancel()
|
c.cancel()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user