Connecting to a newer node triggers autoupgrade check (fixes #1177)

This commit is contained in:
Audrius Butkevicius
2014-12-26 23:12:12 +00:00
parent 5d173168cc
commit 5034a41c08
3 changed files with 32 additions and 6 deletions

View File

@@ -187,6 +187,10 @@ func (s *Subscription) Poll(timeout time.Duration) (Event, error) {
}
}
func (s *Subscription) C() <-chan Event {
return s.events
}
type BufferedSubscription struct {
sub *Subscription
buf []Event