소스 검색

Merge pull request #1511 from coreos/set-watch-consistency-to-strong

etcdctl: Set watch consistency to STRONG
Brian Waldon 11 년 전
부모
커밋
64a12e9341
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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.WEAK_CONSISTENCY)
 	go client.Watch(key, uint64(index), recursive, receiver, stop)
 
 	for {