summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrodrigues3 <grodrigues3@users.noreply.github.com>2017-03-31 10:18:47 -0700
committerGitHub <noreply@github.com>2017-03-31 10:18:47 -0700
commitafb89a48ff88c456601461e6fa55d479e93b9fb4 (patch)
tree95a87d683c36d38032a0c137d32f20462abc4074
parent0acb016b484a649de90bb97f0fe17a3ebb55fd01 (diff)
parenta42614312f0f0375d8675f52392888c334a90c51 (diff)
Merge pull request #412 from guangxuli/fix_error_link
Update the file link path
-rw-r--r--contributors/design-proposals/apiserver-watch.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/contributors/design-proposals/apiserver-watch.md b/contributors/design-proposals/apiserver-watch.md
index 2fc8900a..ef395036 100644
--- a/contributors/design-proposals/apiserver-watch.md
+++ b/contributors/design-proposals/apiserver-watch.md
@@ -123,8 +123,7 @@ watch to etcd, responsible for watching all the changes of objects of a given
resource type. However, this watch can potentially expire at any time and
reconnecting can return "too old resource version". In that case relisting is
necessary. In such case, to avoid LIST requests coming from all watchers at
-the same time, we can introduce an additional etcd event type:
-[EtcdResync](../../pkg/storage/etcd/etcd_watcher.go#L36)
+the same time, we can introduce an additional etcd event type: EtcdResync
Whenever relisting will be done to refresh the internal watch to etcd,
EtcdResync event will be send to all the watchers. It will contain the
@@ -133,7 +132,7 @@ the same time, we can introduce an additional etcd event type:
Thus, we need to create the EtcdResync event, extend watch.Interface and
its implementations to support it and handle those events appropriately
in places like
- [Reflector](../../pkg/client/cache/reflector.go)
+ [Reflector](https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/client-go/tools/cache/reflector.go)
However, this might turn out to be unnecessary optimization if apiserver
will always keep up (which is possible in the new design). We will work