itest: fix close of closed channel panic

This commit is contained in:
Oliver Gugger 2021-10-01 10:25:53 +02:00
parent 1774934666
commit c89637a4e2
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -1599,6 +1599,15 @@ func (hn *HarnessNode) WaitForChannelPolicyUpdate(ctx context.Context,
select {
// Send a watch request every second.
case <-ticker.C:
// Did the event can close in the meantime? We want to
// avoid a "close of closed channel" panic since we're
// re-using the same event chan for multiple requests.
select {
case <-eventChan:
return nil
default:
}
hn.chanWatchRequests <- &chanWatchRequest{
chanPoint: op,
eventChan: eventChan,