Sfoglia il codice sorgente

Merge pull request #6241 from gyuho/progress-doc

clientv3: specify watch progress notify interval
Gyu-Ho Lee 10 anni fa
parent
commit
722d66b03d
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      clientv3/op.go

+ 2 - 1
clientv3/op.go

@@ -287,7 +287,8 @@ func withTop(target SortTarget, order SortOrder) []OpOption {
 	return []OpOption{WithPrefix(), WithSort(target, order), WithLimit(1)}
 }
 
-// WithProgressNotify makes watch server send periodic progress updates.
+// WithProgressNotify makes watch server send periodic progress updates
+// every 10 minutes when there is no incoming events.
 // Progress updates have zero events in WatchResponse.
 func WithProgressNotify() OpOption {
 	return func(op *Op) {