Browse Source

etcdctl: remove SetConsistency call

This call to SetConsistency is explicitly setting the default
value, so it's really unnecessary.
Brian Waldon 11 năm trước cách đây
mục cha
commit
d36a3e18d2
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      etcdctl/command/exec_watch_command.go

+ 0 - 1
etcdctl/command/exec_watch_command.go

@@ -65,7 +65,6 @@ func execWatchCommandFunc(c *cli.Context, client *etcd.Client) (*etcd.Response,
 	}()
 
 	receiver := make(chan *etcd.Response)
-	client.SetConsistency(etcd.STRONG_CONSISTENCY)
 	go client.Watch(key, uint64(index), recursive, receiver, stop)
 
 	for {