From 9581f7676c9d32dd3ed78398abc9966aba4cbfa8 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Tue, 25 Jul 2017 12:27:53 -0700 Subject: [PATCH] grpcproxy: forward Canceled field when broadcasting watch responses --- proxy/grpcproxy/watcher.go | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/grpcproxy/watcher.go b/proxy/grpcproxy/watcher.go index 7387caf4dbd..1a497462f99 100644 --- a/proxy/grpcproxy/watcher.go +++ b/proxy/grpcproxy/watcher.go @@ -111,6 +111,7 @@ func (w *watcher) send(wr clientv3.WatchResponse) { Header: &wr.Header, Created: wr.Created, CompactRevision: wr.CompactRevision, + Canceled: wr.Canceled, WatchId: w.id, Events: events, })