Skip to content

Commit

Permalink
Merge pull request #3875 from filecoin-project/feat/break-on-stop-sleep
Browse files Browse the repository at this point in the history
break out of mining loop when stop is called during niceSleep
  • Loading branch information
magik6k authored Sep 16, 2020
2 parents 34d31d8 + 3b00c68 commit c66ebc5
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions miner/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ func (m *Miner) niceSleep(d time.Duration) bool {
case <-build.Clock.After(d):
return true
case <-m.stop:
log.Infow("received interrupt while trying to sleep in mining cycle")
return false
}
}
Expand Down Expand Up @@ -169,7 +170,9 @@ func (m *Miner) mine(ctx context.Context) {
prebase, err := m.GetBestMiningCandidate(ctx)
if err != nil {
log.Errorf("failed to get best mining candidate: %s", err)
m.niceSleep(time.Second * 5)
if !m.niceSleep(time.Second * 5) {
break
}
continue
}

Expand Down Expand Up @@ -199,7 +202,9 @@ func (m *Miner) mine(ctx context.Context) {
_, err = m.api.BeaconGetEntry(ctx, prebase.TipSet.Height()+prebase.NullRounds+1)
if err != nil {
log.Errorf("failed getting beacon entry: %s", err)
m.niceSleep(time.Second)
if !m.niceSleep(time.Second) {
break
}
continue
}

Expand All @@ -208,7 +213,9 @@ func (m *Miner) mine(ctx context.Context) {

if base.TipSet.Equals(lastBase.TipSet) && lastBase.NullRounds == base.NullRounds {
log.Warnf("BestMiningCandidate from the previous round: %s (nulls:%d)", lastBase.TipSet.Cids(), lastBase.NullRounds)
m.niceSleep(time.Duration(build.BlockDelaySecs) * time.Second)
if !m.niceSleep(time.Duration(build.BlockDelaySecs) * time.Second) {
break
}
continue
}

Expand All @@ -217,7 +224,9 @@ func (m *Miner) mine(ctx context.Context) {
b, err := m.mineOne(ctx, base)
if err != nil {
log.Errorf("mining block failed: %+v", err)
m.niceSleep(time.Second)
if !m.niceSleep(time.Second) {
break
}
onDone(false, 0, err)
continue
}
Expand Down

0 comments on commit c66ebc5

Please sign in to comment.