mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix GoDoc to match actual events-limit
Commit 59d45c384a
changed
the `eventsLimit` from 64 to 256, but did not update
the GoDoc accordingly.
This patch updates the GoDoc for `Subscribe` and `SubscribeTopic`
to match the actual limit.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
b7ad3e7ea1
commit
fb3935022d
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ func New() *Events {
|
|||
}
|
||||
}
|
||||
|
||||
// Subscribe adds new listener to events, returns slice of 64 stored
|
||||
// Subscribe adds new listener to events, returns slice of 256 stored
|
||||
// last events, a channel in which you can expect new events (in form
|
||||
// of interface{}, so you need type assertion), and a function to call
|
||||
// to stop the stream of events.
|
||||
|
@ -46,7 +46,7 @@ func (e *Events) Subscribe() ([]eventtypes.Message, chan interface{}, func()) {
|
|||
return current, l, cancel
|
||||
}
|
||||
|
||||
// SubscribeTopic adds new listener to events, returns slice of 64 stored
|
||||
// SubscribeTopic adds new listener to events, returns slice of 256 stored
|
||||
// last events, a channel in which you can expect new events (in form
|
||||
// of interface{}, so you need type assertion).
|
||||
func (e *Events) SubscribeTopic(since, until time.Time, ef *Filter) ([]eventtypes.Message, chan interface{}) {
|
||||
|
|
Loading…
Reference in a new issue