From f68446fed93b8a57a96eb06667d9c04d8a6951a7 Mon Sep 17 00:00:00 2001 From: Nan Deng Date: Mon, 30 Jun 2014 20:51:38 -0700 Subject: [PATCH] comment --- pkg/util/fake_etcd_client.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/util/fake_etcd_client.go b/pkg/util/fake_etcd_client.go index c7f3160f06a..f21a5c17e1e 100644 --- a/pkg/util/fake_etcd_client.go +++ b/pkg/util/fake_etcd_client.go @@ -51,9 +51,8 @@ func MakeFakeEtcdClient(t *testing.T) *FakeEtcdClient { ret := &FakeEtcdClient{ t: t, Data: map[string]EtcdResponseWithError{}, - // watchChanReady: make(chan bool), } - // The channels are not ready yet + // Watch() method has not been called. ret.condWatchCompleted = sync.NewCond(&ret.condLock) return ret }