Browse Source

clientv3: keep NewFromURL the same, add method NewFromURLs

jiaxuanzhou 7 years ago
parent
commit
ad448fb280
1 changed files with 6 additions and 1 deletions
  1. 6 1
      clientv3/client.go

+ 6 - 1
clientv3/client.go

@@ -90,7 +90,12 @@ func NewCtxClient(ctx context.Context) *Client {
 }
 
 // NewFromURL creates a new etcdv3 client from a URL.
-func NewFromURL(urls []string) (*Client, error) {
+func NewFromURL(url string) (*Client, error) {
+	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})
 }