wdpost: Make chain notif loop reconnect friendly

This commit is contained in:
Łukasz Magiera 2020-04-07 20:02:52 +02:00
parent 5524241645
commit f2dd0f046e

View File

@ -3,6 +3,7 @@ package storage
import (
"context"
"sync"
"time"
"go.opencensus.io/trace"
"golang.org/x/xerrors"
@ -43,32 +44,50 @@ func NewWindowedPoStScheduler(api storageMinerApi, sb storage.Prover, actor addr
}
func (s *WindowPoStScheduler) Run(ctx context.Context) {
notifs, err := s.api.ChainNotify(ctx)
if err != nil {
return
}
current := <-notifs
if len(current) != 1 {
panic("expected first notif to have len = 1")
}
if current[0].Type != store.HCCurrent {
panic("expected first notif to tell current ts")
}
if err := s.update(ctx, current[0].Val); err != nil {
panic(err)
}
defer s.abortActivePoSt()
var notifs <-chan []*store.HeadChange
var err error
var gotCur bool
// not fine to panic after this point
for {
if notifs == nil {
notifs, err = s.api.ChainNotify(ctx)
if err != nil {
log.Errorf("ChainNotify error: %+v")
time.Sleep(10 * time.Second)
continue
}
gotCur = false
}
select {
case changes, ok := <-notifs:
if !ok {
log.Warn("WindowPoStScheduler notifs channel closed")
return
notifs = nil
continue
}
if !gotCur {
if len(changes) != 1 {
log.Errorf("expected first notif to have len = 1")
continue
}
if changes[0].Type != store.HCCurrent {
log.Errorf("expected first notif to tell current ts")
continue
}
if err := s.update(ctx, changes[0].Val); err != nil {
log.Errorf("%+v", err)
}
gotCur = true
continue
}
ctx, span := trace.StartSpan(ctx, "WindowPoStScheduler.headChange")