From bed6b90e61051345d41e1b2f5b0cfb0e79f96904 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Fri, 4 Dec 2015 16:16:54 -0800 Subject: [PATCH] storagepb: minor updates from genproto I ran genproto with the most recent protocol buffer and it adds one line of missing comment. --- storage/storagepb/kv.pb.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/storage/storagepb/kv.pb.go b/storage/storagepb/kv.pb.go index 3684363fe..0b6453ae3 100644 --- a/storage/storagepb/kv.pb.go +++ b/storage/storagepb/kv.pb.go @@ -68,8 +68,9 @@ type Event struct { // a put event contains the current key-value // a delete/expire event contains the previous // key-value - Kv *KeyValue `protobuf:"bytes,2,opt,name=kv" json:"kv,omitempty"` - WatchID int64 `protobuf:"varint,3,opt,name=watchID,proto3" json:"watchID,omitempty"` + Kv *KeyValue `protobuf:"bytes,2,opt,name=kv" json:"kv,omitempty"` + // watchID is the ID of watching this event is sent to. + WatchID int64 `protobuf:"varint,3,opt,name=watchID,proto3" json:"watchID,omitempty"` } func (m *Event) Reset() { *m = Event{} }