Restore e2e nightly workflow on feature/abci++ppp branch (#9280)

This commit is contained in:
Sergio Mena
2022-08-17 21:05:53 +02:00
committed by GitHub
parent 622b930e3a
commit fb9afcc969
3 changed files with 95 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
// select {
// case msg <- subscription.Out():
// // handle msg.Data() and msg.Events()
// case <-subscription.Canceled():
// case <-subscription.Cancelled():
// return subscription.Err()
// }
// }
+1 -1
View File
@@ -46,7 +46,7 @@ func (s *Subscription) Out() <-chan Message {
// nolint: misspell
// Cancelled returns a channel that's closed when the subscription is
// terminated and supposed to be used in a select statement.
func (s *Subscription) Cancelled() <-chan struct{} { // nolint: misspell
func (s *Subscription) Cancelled() <-chan struct{} {
return s.canceled
}